Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / ResourceReferenceExpressionConverter.cs / 1305600 / ResourceReferenceExpressionConverter.cs
//---------------------------------------------------------------------------- // // File: ResourceReferenceExpressionConverter.cs // // Description: // TypeConverter for a resource value expression // // Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Globalization; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Windows; namespace System.Windows.Markup { ////// TypeConverter for a resource value expression /// public class ResourceReferenceExpressionConverter : ExpressionConverter { ////// TypeConverter method override. /// /// /// ITypeDescriptorContext /// /// /// Type to convert from /// ////// true if conversion is possible /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return base.CanConvertFrom(context, sourceType); } ////// TypeConverter method override. /// ////// For avalon serialization this converter /// returns true for string types only if the /// target element with the resource /// dictionary for the current resource /// reference is also being serialized. Else /// it returns false and the serialization /// engine must serialize the evaluated /// value of the expression. /// /// /// ITypeDescriptorContext /// /// /// Type to convert to /// ////// true if conversion is possible /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { // Validate Input Arguments if (destinationType == null) { throw new ArgumentNullException("destinationType"); } //MarkupExtention if (destinationType == typeof(MarkupExtension)) return true; return base.CanConvertTo(context, destinationType); } ////// TypeConverter method implementation. /// /// /// ITypeDescriptorContext /// /// /// current culture (see CLR specs) /// /// /// value to convert from /// ////// value that is result of conversion /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return base.ConvertFrom(context, culture, value); } ////// TypeConverter method implementation. /// /// /// ITypeDescriptorContext /// /// /// current culture (see CLR specs) /// /// /// value to convert from /// /// /// Type to convert to /// ////// converted value /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { // Validate Input Arguments ResourceReferenceExpression expr = value as ResourceReferenceExpression; if (expr == null) { throw new ArgumentException(SR.Get(SRID.MustBeOfType, "value", "ResourceReferenceExpression")); } if (destinationType == null) { throw new ArgumentNullException("destinationType"); } // MarkupExtension if (destinationType == typeof(MarkupExtension)) { return new DynamicResourceExtension(expr.ResourceKey); } return base.ConvertTo(context, culture, value, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: ResourceReferenceExpressionConverter.cs // // Description: // TypeConverter for a resource value expression // // Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Globalization; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Windows; namespace System.Windows.Markup { ////// TypeConverter for a resource value expression /// public class ResourceReferenceExpressionConverter : ExpressionConverter { ////// TypeConverter method override. /// /// /// ITypeDescriptorContext /// /// /// Type to convert from /// ////// true if conversion is possible /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return base.CanConvertFrom(context, sourceType); } ////// TypeConverter method override. /// ////// For avalon serialization this converter /// returns true for string types only if the /// target element with the resource /// dictionary for the current resource /// reference is also being serialized. Else /// it returns false and the serialization /// engine must serialize the evaluated /// value of the expression. /// /// /// ITypeDescriptorContext /// /// /// Type to convert to /// ////// true if conversion is possible /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { // Validate Input Arguments if (destinationType == null) { throw new ArgumentNullException("destinationType"); } //MarkupExtention if (destinationType == typeof(MarkupExtension)) return true; return base.CanConvertTo(context, destinationType); } ////// TypeConverter method implementation. /// /// /// ITypeDescriptorContext /// /// /// current culture (see CLR specs) /// /// /// value to convert from /// ////// value that is result of conversion /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { return base.ConvertFrom(context, culture, value); } ////// TypeConverter method implementation. /// /// /// ITypeDescriptorContext /// /// /// current culture (see CLR specs) /// /// /// value to convert from /// /// /// Type to convert to /// ////// converted value /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { // Validate Input Arguments ResourceReferenceExpression expr = value as ResourceReferenceExpression; if (expr == null) { throw new ArgumentException(SR.Get(SRID.MustBeOfType, "value", "ResourceReferenceExpression")); } if (destinationType == null) { throw new ArgumentNullException("destinationType"); } // MarkupExtension if (destinationType == typeof(MarkupExtension)) { return new DynamicResourceExtension(expr.ResourceKey); } return base.ConvertTo(context, culture, value, destinationType); } } } // 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
- ToolBarTray.cs
- CommandLibraryHelper.cs
- ParserHooks.cs
- TypeReference.cs
- Error.cs
- TextServicesProperty.cs
- ObjectItemCollection.cs
- PathFigure.cs
- Function.cs
- FileDataSourceCache.cs
- ExpandSegmentCollection.cs
- RegexTree.cs
- AnimatedTypeHelpers.cs
- DoubleConverter.cs
- ProfessionalColorTable.cs
- ColorDialog.cs
- FixedPosition.cs
- UInt16Converter.cs
- XPathDescendantIterator.cs
- ImageField.cs
- NativeMethods.cs
- CodeConditionStatement.cs
- SelectingProviderEventArgs.cs
- Operators.cs
- EventLogEntryCollection.cs
- StylusDevice.cs
- Thread.cs
- ToolStripSeparatorRenderEventArgs.cs
- RegexGroupCollection.cs
- ClipboardData.cs
- HtmlLiteralTextAdapter.cs
- DataGridViewSortCompareEventArgs.cs
- RsaSecurityTokenParameters.cs
- TextServicesPropertyRanges.cs
- SEHException.cs
- KeyGestureConverter.cs
- CircleEase.cs
- WorkflowApplicationEventArgs.cs
- ZoneIdentityPermission.cs
- XmlSchemaSimpleType.cs
- SymmetricKeyWrap.cs
- LateBoundChannelParameterCollection.cs
- MailMessageEventArgs.cs
- EventProviderBase.cs
- Rectangle.cs
- SmtpFailedRecipientException.cs
- ActivityInfo.cs
- RegexTree.cs
- RevocationPoint.cs
- SizeConverter.cs
- ConfigPathUtility.cs
- ListViewInsertedEventArgs.cs
- MarkupCompiler.cs
- FileNotFoundException.cs
- ChtmlFormAdapter.cs
- RequestCache.cs
- TransformedBitmap.cs
- BroadcastEventHelper.cs
- SafeRightsManagementPubHandle.cs
- FusionWrap.cs
- HyperlinkAutomationPeer.cs
- SweepDirectionValidation.cs
- SqlInternalConnection.cs
- SessionStateSection.cs
- ToolConsole.cs
- _Rfc2616CacheValidators.cs
- oledbmetadatacollectionnames.cs
- ComponentEditorForm.cs
- FillErrorEventArgs.cs
- IIS7UserPrincipal.cs
- RegexWorker.cs
- SiblingIterators.cs
- XsdDateTime.cs
- AnonymousIdentificationModule.cs
- System.Data_BID.cs
- AppDomainUnloadedException.cs
- Publisher.cs
- DefaultValueTypeConverter.cs
- InvokeHandlers.cs
- InfoCardProofToken.cs
- InvariantComparer.cs
- CodeTypeDeclarationCollection.cs
- StandardMenuStripVerb.cs
- FlowNode.cs
- SplashScreen.cs
- ContainerUtilities.cs
- MappingException.cs
- WebPartEditorOkVerb.cs
- SqlFileStream.cs
- AssemblyAttributes.cs
- mediaeventargs.cs
- ExpressionBinding.cs
- TextWriter.cs
- SqlBuilder.cs
- XamlToRtfWriter.cs
- ValueConversionAttribute.cs
- Timer.cs
- RangeBase.cs
- HandlerMappingMemo.cs
- SolidColorBrush.cs