Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / DynamicResourceExtension.cs / 1 / DynamicResourceExtension.cs
/****************************************************************************\ * * File: DynamicResourceExtension.cs * * Class for Xaml markup extension for static resource references. * * Copyright (C) 2004 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.ComponentModel; using System.Windows; using System.Windows.Markup; using System.Reflection; using MS.Internal; // Helper namespace System.Windows { ////// Class for Xaml markup extension for static resource references. /// [TypeConverter(typeof(DynamicResourceExtensionConverter))] [MarkupExtensionReturnType(typeof(object))] public class DynamicResourceExtension : MarkupExtension { ////// Constructor that takes no parameters /// public DynamicResourceExtension() { } ////// Constructor that takes the resource key that this is a static reference to. /// public DynamicResourceExtension( object resourceKey) { if (resourceKey == null) { throw new ArgumentNullException("resourceKey"); } _resourceKey = resourceKey; } ////// Return an object that should be set on the targetObject's targetProperty /// for this markup extension. For DynamicResourceExtension, this is the object found in /// a resource dictionary in the current parent chain that is keyed by ResourceKey /// ////// The object to set on this property. /// public override object ProvideValue(IServiceProvider serviceProvider) { if (ResourceKey == null) { throw new InvalidOperationException(SR.Get(SRID.MarkupExtensionResourceKey)); } if (serviceProvider != null) { IProvideValueTarget provideValueTarget = serviceProvider.GetService(typeof(IProvideValueTarget)) as IProvideValueTarget; // DynamicResourceExtensions are not allowed On CLR props except for Setter,Trigger,Condition (bugs 1183373,1572537) DependencyObject targetDependencyObject; DependencyProperty targetDependencyProperty; Helper.CheckCanReceiveMarkupExtension(this, provideValueTarget, out targetDependencyObject, out targetDependencyProperty); } return new ResourceReferenceExpression(ResourceKey); } ////// The key in a Resource Dictionary used to find the object refered to by this /// Markup Extension. /// [ConstructorArgument("resourceKey")] // Uses an instance descriptor public object ResourceKey { get { return _resourceKey; } set { if (value == null) { throw new ArgumentNullException("value"); } _resourceKey = value; } } private object _resourceKey; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /****************************************************************************\ * * File: DynamicResourceExtension.cs * * Class for Xaml markup extension for static resource references. * * Copyright (C) 2004 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.ComponentModel; using System.Windows; using System.Windows.Markup; using System.Reflection; using MS.Internal; // Helper namespace System.Windows { ////// Class for Xaml markup extension for static resource references. /// [TypeConverter(typeof(DynamicResourceExtensionConverter))] [MarkupExtensionReturnType(typeof(object))] public class DynamicResourceExtension : MarkupExtension { ////// Constructor that takes no parameters /// public DynamicResourceExtension() { } ////// Constructor that takes the resource key that this is a static reference to. /// public DynamicResourceExtension( object resourceKey) { if (resourceKey == null) { throw new ArgumentNullException("resourceKey"); } _resourceKey = resourceKey; } ////// Return an object that should be set on the targetObject's targetProperty /// for this markup extension. For DynamicResourceExtension, this is the object found in /// a resource dictionary in the current parent chain that is keyed by ResourceKey /// ////// The object to set on this property. /// public override object ProvideValue(IServiceProvider serviceProvider) { if (ResourceKey == null) { throw new InvalidOperationException(SR.Get(SRID.MarkupExtensionResourceKey)); } if (serviceProvider != null) { IProvideValueTarget provideValueTarget = serviceProvider.GetService(typeof(IProvideValueTarget)) as IProvideValueTarget; // DynamicResourceExtensions are not allowed On CLR props except for Setter,Trigger,Condition (bugs 1183373,1572537) DependencyObject targetDependencyObject; DependencyProperty targetDependencyProperty; Helper.CheckCanReceiveMarkupExtension(this, provideValueTarget, out targetDependencyObject, out targetDependencyProperty); } return new ResourceReferenceExpression(ResourceKey); } ////// The key in a Resource Dictionary used to find the object refered to by this /// Markup Extension. /// [ConstructorArgument("resourceKey")] // Uses an instance descriptor public object ResourceKey { get { return _resourceKey; } set { if (value == null) { throw new ArgumentNullException("value"); } _resourceKey = value; } } private object _resourceKey; } } // 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
- ClassicBorderDecorator.cs
- ArgIterator.cs
- CodeConstructor.cs
- ImpersonationContext.cs
- TableStyle.cs
- ItemsControlAutomationPeer.cs
- WindowsScrollBar.cs
- DesignerAttribute.cs
- MaterialGroup.cs
- OletxResourceManager.cs
- FileRecordSequence.cs
- TextEditorMouse.cs
- WriterOutput.cs
- AutomationPatternInfo.cs
- TripleDESCryptoServiceProvider.cs
- FixedSOMPageElement.cs
- EvidenceBase.cs
- StrokeNodeOperations2.cs
- IPAddressCollection.cs
- CommandHelpers.cs
- GroupBoxRenderer.cs
- sqlinternaltransaction.cs
- PointLightBase.cs
- ThaiBuddhistCalendar.cs
- NotImplementedException.cs
- WeakReadOnlyCollection.cs
- EUCJPEncoding.cs
- BuildProviderAppliesToAttribute.cs
- Int64Storage.cs
- EpmTargetTree.cs
- MsmqElementBase.cs
- BreakSafeBase.cs
- FacetValueContainer.cs
- ObjectManager.cs
- Roles.cs
- RequestStatusBarUpdateEventArgs.cs
- HashSet.cs
- WebResourceUtil.cs
- Util.cs
- StickyNoteContentControl.cs
- ToolStripDropDownClosingEventArgs.cs
- SafeSecurityHelper.cs
- TraceRecords.cs
- IgnoreSectionHandler.cs
- BitmapMetadata.cs
- LogLogRecordHeader.cs
- WebUtil.cs
- ProcessHostMapPath.cs
- TextEvent.cs
- TrackBar.cs
- ConfigXmlElement.cs
- VectorAnimationUsingKeyFrames.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- FixedSOMImage.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- AutoScrollHelper.cs
- ViewgenGatekeeper.cs
- ConstraintStruct.cs
- DBDataPermission.cs
- EmptyEnumerator.cs
- Transform.cs
- PerformanceCounterLib.cs
- PasswordTextNavigator.cs
- LocalizableAttribute.cs
- ExpandedProjectionNode.cs
- XmlMapping.cs
- UTF7Encoding.cs
- Color.cs
- DeviceSpecific.cs
- OleDbSchemaGuid.cs
- WindowsListViewSubItem.cs
- ListView.cs
- TextHidden.cs
- ToolStripScrollButton.cs
- BCLDebug.cs
- CatalogZone.cs
- RowsCopiedEventArgs.cs
- CommonXSendMessage.cs
- SamlEvidence.cs
- ServerReliableChannelBinder.cs
- TokenFactoryBase.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- ControlPaint.cs
- SqlUserDefinedTypeAttribute.cs
- XsltLibrary.cs
- UriScheme.cs
- FileLevelControlBuilderAttribute.cs
- ListBoxItemAutomationPeer.cs
- Vector3dCollection.cs
- CodeDomLoader.cs
- Divide.cs
- CodeMemberField.cs
- CalendarDay.cs
- VisualTreeUtils.cs
- BoundConstants.cs
- ConnectionAcceptor.cs
- AppSettingsReader.cs
- Parallel.cs
- Utils.cs
- TextBoxRenderer.cs