Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- RegexCaptureCollection.cs
- DeferredTextReference.cs
- InvokeMemberBinder.cs
- HttpResponse.cs
- WebPartEditorOkVerb.cs
- ScaleTransform.cs
- PropertyGridEditorPart.cs
- ParserHooks.cs
- JapaneseLunisolarCalendar.cs
- CurrentChangingEventArgs.cs
- XmlUtilWriter.cs
- Stopwatch.cs
- SID.cs
- LinqDataSourceContextData.cs
- SingleKeyFrameCollection.cs
- RectangleGeometry.cs
- DataControlButton.cs
- ShortcutKeysEditor.cs
- Walker.cs
- AmbientEnvironment.cs
- RadioButtonRenderer.cs
- DataSourceSelectArguments.cs
- DisplayNameAttribute.cs
- Schema.cs
- FixedSOMPage.cs
- IisTraceListener.cs
- TreeNodeEventArgs.cs
- View.cs
- SessionState.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- GlyphsSerializer.cs
- ExpressionBinding.cs
- ManagementOptions.cs
- UniqueIdentifierService.cs
- HMAC.cs
- PtsPage.cs
- WebPartCloseVerb.cs
- QEncodedStream.cs
- SiteOfOriginContainer.cs
- PropertyAccessVisitor.cs
- BitmapSizeOptions.cs
- HiddenFieldPageStatePersister.cs
- Column.cs
- Listbox.cs
- DiagnosticEventProvider.cs
- OleDbParameterCollection.cs
- LinkClickEvent.cs
- DataGridToolTip.cs
- SqlAliasesReferenced.cs
- _OSSOCK.cs
- XmlReflectionImporter.cs
- FormViewInsertEventArgs.cs
- SafeNativeMethodsCLR.cs
- SafeNativeMethods.cs
- ServiceContractGenerationContext.cs
- ZipIOFileItemStream.cs
- DataGridViewRowHeaderCell.cs
- COAUTHINFO.cs
- ConversionValidationRule.cs
- SQLInt16.cs
- XPathDocumentIterator.cs
- SystemTcpStatistics.cs
- TableLayoutPanelCellPosition.cs
- DecoderExceptionFallback.cs
- UriParserTemplates.cs
- BinaryConverter.cs
- HostingPreferredMapPath.cs
- WebPartConnectionCollection.cs
- LogExtentCollection.cs
- DbModificationCommandTree.cs
- ModelUIElement3D.cs
- WebPartConnectionsCancelVerb.cs
- DynamicField.cs
- UserPreferenceChangedEventArgs.cs
- HttpContextWrapper.cs
- BinaryConverter.cs
- VisualProxy.cs
- ToolStripButton.cs
- CDSCollectionETWBCLProvider.cs
- ColumnBinding.cs
- GradientBrush.cs
- ProfilePropertySettings.cs
- RemoteWebConfigurationHost.cs
- SelectedDatesCollection.cs
- XmlValidatingReader.cs
- ButtonRenderer.cs
- TextSelectionProcessor.cs
- CompilationSection.cs
- Bold.cs
- DBNull.cs
- DesignerLoader.cs
- ASCIIEncoding.cs
- TextEditorTyping.cs
- SuppressMergeCheckAttribute.cs
- ThicknessConverter.cs
- StringConcat.cs
- ProxyOperationRuntime.cs
- DurableInstanceProvider.cs
- RTLAwareMessageBox.cs
- WebAdminConfigurationHelper.cs