Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / SystemThemeKey.cs / 1 / SystemThemeKey.cs
//---------------------------------------------------------------------------- // // Copyright (C) 2004 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Reflection; using System.Text; using System.Windows; using System.Windows.Markup; using System.ComponentModel; using System.Diagnostics; namespace System.Windows { ////// Implements ResourceKey to create unique keys for our system resources. /// Keys will be exposed publicly only with the ResourceKey API. /// [TypeConverter(typeof(System.Windows.Markup.SystemKeyConverter))] internal class SystemThemeKey : ResourceKey { ////// Constructs a new instance of the key with the given ID. /// /// The internal, unique ID of the system resource. internal SystemThemeKey(SystemResourceKeyID id) { _id = id; Debug.Assert(id > SystemResourceKeyID.InternalSystemThemeStylesStart && id < SystemResourceKeyID.InternalSystemThemeStylesEnd); } ////// Used to determine where to look for the resource dictionary that holds this resource. /// public override Assembly Assembly { get { if (_presentationFrameworkAssembly == null) { _presentationFrameworkAssembly = typeof(FrameworkElement).Assembly; } return _presentationFrameworkAssembly; } } ////// Determines if the passed in object is equal to this object. /// Two keys will be equal if they both have the same ID. /// /// The object to compare with. ///True if the objects are equal. False otherwise. public override bool Equals(object o) { SystemThemeKey key = o as SystemThemeKey; if (key != null) { return key._id == this._id; } return false; } ////// Serves as a hash function for a particular type. /// public override int GetHashCode() { return (int)_id; } ////// get string representation of this key /// ///the string representation of the key public override string ToString() { return _id.ToString(); } internal SystemResourceKeyID InternalKey { get { return _id; } } private SystemResourceKeyID _id; private static Assembly _presentationFrameworkAssembly; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) 2004 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Reflection; using System.Text; using System.Windows; using System.Windows.Markup; using System.ComponentModel; using System.Diagnostics; namespace System.Windows { ////// Implements ResourceKey to create unique keys for our system resources. /// Keys will be exposed publicly only with the ResourceKey API. /// [TypeConverter(typeof(System.Windows.Markup.SystemKeyConverter))] internal class SystemThemeKey : ResourceKey { ////// Constructs a new instance of the key with the given ID. /// /// The internal, unique ID of the system resource. internal SystemThemeKey(SystemResourceKeyID id) { _id = id; Debug.Assert(id > SystemResourceKeyID.InternalSystemThemeStylesStart && id < SystemResourceKeyID.InternalSystemThemeStylesEnd); } ////// Used to determine where to look for the resource dictionary that holds this resource. /// public override Assembly Assembly { get { if (_presentationFrameworkAssembly == null) { _presentationFrameworkAssembly = typeof(FrameworkElement).Assembly; } return _presentationFrameworkAssembly; } } ////// Determines if the passed in object is equal to this object. /// Two keys will be equal if they both have the same ID. /// /// The object to compare with. ///True if the objects are equal. False otherwise. public override bool Equals(object o) { SystemThemeKey key = o as SystemThemeKey; if (key != null) { return key._id == this._id; } return false; } ////// Serves as a hash function for a particular type. /// public override int GetHashCode() { return (int)_id; } ////// get string representation of this key /// ///the string representation of the key public override string ToString() { return _id.ToString(); } internal SystemResourceKeyID InternalKey { get { return _id; } } private SystemResourceKeyID _id; private static Assembly _presentationFrameworkAssembly; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Deflater.cs
- Matrix.cs
- TakeOrSkipWhileQueryOperator.cs
- JapaneseCalendar.cs
- SingleKeyFrameCollection.cs
- BufferedStream.cs
- DrawListViewSubItemEventArgs.cs
- SecurityDocument.cs
- SchemaImporterExtension.cs
- SpnegoTokenProvider.cs
- WebSysDefaultValueAttribute.cs
- NumericUpDownAccelerationCollection.cs
- CodeSnippetExpression.cs
- Socket.cs
- AccessDataSourceView.cs
- ToolbarAUtomationPeer.cs
- TabControl.cs
- ThemeDirectoryCompiler.cs
- IxmlLineInfo.cs
- MdImport.cs
- WebBrowserBase.cs
- WasEndpointConfigContainer.cs
- AssemblyHash.cs
- OverflowException.cs
- InvalidAsynchronousStateException.cs
- LazyTextWriterCreator.cs
- XmlAnyElementAttributes.cs
- MissingSatelliteAssemblyException.cs
- DataControlButton.cs
- TraceSwitch.cs
- AsymmetricKeyExchangeFormatter.cs
- Panel.cs
- LambdaExpression.cs
- RtfToken.cs
- Brushes.cs
- ProcessHostFactoryHelper.cs
- DetailsViewPageEventArgs.cs
- Style.cs
- PasswordBoxAutomationPeer.cs
- Label.cs
- LayoutTableCell.cs
- DataControlButton.cs
- InputLanguage.cs
- XmlExpressionDumper.cs
- TraceRecords.cs
- WaitForChangedResult.cs
- FixedDocumentPaginator.cs
- HtmlInputImage.cs
- CrossSiteScriptingValidation.cs
- ScrollPatternIdentifiers.cs
- UpdateCommand.cs
- SqlDataSourceCache.cs
- PersonalizationStateInfo.cs
- MenuItemBinding.cs
- CodePageUtils.cs
- IsolatedStorageException.cs
- TypeNameConverter.cs
- WebPartConnectionsDisconnectVerb.cs
- QuaternionKeyFrameCollection.cs
- mediapermission.cs
- HttpDictionary.cs
- TransactionsSectionGroup.cs
- TextEffect.cs
- Journaling.cs
- ConstraintConverter.cs
- CollectionChangeEventArgs.cs
- HelpEvent.cs
- SpeakProgressEventArgs.cs
- DataObjectEventArgs.cs
- BeginSelectCardRequest.cs
- WorkflowApplicationCompletedException.cs
- HwndSourceKeyboardInputSite.cs
- WebPartManagerInternals.cs
- ViewGenResults.cs
- MessagePropertyVariants.cs
- XPathNodeIterator.cs
- MaskedTextBox.cs
- FlowLayoutSettings.cs
- SqlNotificationEventArgs.cs
- BuildResultCache.cs
- AttachedPropertyMethodSelector.cs
- HierarchicalDataSourceControl.cs
- QilSortKey.cs
- SqlMethodAttribute.cs
- ListChangedEventArgs.cs
- AspNetSynchronizationContext.cs
- Misc.cs
- WebPartManagerInternals.cs
- HwndAppCommandInputProvider.cs
- HoistedLocals.cs
- SystemWebExtensionsSectionGroup.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- TableLayout.cs
- Model3DGroup.cs
- XsltQilFactory.cs
- RadioButtonDesigner.cs
- SchemaTableColumn.cs
- Rect3DConverter.cs
- XmlHierarchyData.cs
- TransactionScopeDesigner.cs