Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / ResourceReferenceExpressionConverter.cs / 1 / 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
- NonClientArea.cs
- ScriptManagerProxy.cs
- ApplicationException.cs
- XPathDocument.cs
- ManipulationCompletedEventArgs.cs
- Error.cs
- Floater.cs
- FocusTracker.cs
- Rect3DValueSerializer.cs
- UserNameSecurityTokenAuthenticator.cs
- Cursor.cs
- PathFigureCollectionConverter.cs
- ClosableStream.cs
- KeyPressEvent.cs
- AspNetSynchronizationContext.cs
- Bold.cs
- CodeVariableDeclarationStatement.cs
- KeyValuePairs.cs
- CodeGotoStatement.cs
- Int32CAMarshaler.cs
- QueryContinueDragEventArgs.cs
- BitmapEffectGeneralTransform.cs
- MenuCommands.cs
- ListSortDescription.cs
- MatrixUtil.cs
- SendActivityDesigner.cs
- FigureParagraph.cs
- UdpTransportSettings.cs
- PageThemeParser.cs
- WindowsStatusBar.cs
- PeerNameRecord.cs
- Int32Rect.cs
- TaskDesigner.cs
- PenThreadPool.cs
- CodeTypeDeclarationCollection.cs
- KeyEvent.cs
- TriState.cs
- Point3DAnimation.cs
- KeyValueSerializer.cs
- DecoderFallback.cs
- ProfilePropertyMetadata.cs
- BStrWrapper.cs
- SchemaMerger.cs
- XmlSchemaParticle.cs
- ReadOnlyDictionary.cs
- PagePropertiesChangingEventArgs.cs
- DataSet.cs
- PolyQuadraticBezierSegment.cs
- Assembly.cs
- AmbientValueAttribute.cs
- StreamReader.cs
- EntityViewGenerationAttribute.cs
- RootBrowserWindowProxy.cs
- IDQuery.cs
- BamlTreeMap.cs
- ToolStripRenderer.cs
- GeneralTransform3DGroup.cs
- InheritanceContextHelper.cs
- JpegBitmapDecoder.cs
- _HTTPDateParse.cs
- LayoutEvent.cs
- DataViewListener.cs
- Message.cs
- TabletDevice.cs
- StatusBarItemAutomationPeer.cs
- Facet.cs
- _LocalDataStore.cs
- NullableDecimalAverageAggregationOperator.cs
- TranslateTransform.cs
- CorrelationTokenInvalidatedHandler.cs
- SmtpNetworkElement.cs
- InputMethodStateChangeEventArgs.cs
- ResizeGrip.cs
- CollectionConverter.cs
- JpegBitmapDecoder.cs
- ClientUtils.cs
- OdbcEnvironment.cs
- BindUriHelper.cs
- RuleSettings.cs
- _ScatterGatherBuffers.cs
- RemotingException.cs
- SqlVersion.cs
- ConsumerConnectionPointCollection.cs
- RowSpanVector.cs
- AuthenticationModuleElementCollection.cs
- cookieexception.cs
- QilReplaceVisitor.cs
- GeometryModel3D.cs
- CompensatableSequenceActivity.cs
- LogExtentCollection.cs
- AgileSafeNativeMemoryHandle.cs
- GeometryModel3D.cs
- HorizontalAlignConverter.cs
- TokenizerHelper.cs
- Propagator.cs
- HttpCapabilitiesSectionHandler.cs
- PeerNameRecord.cs
- ExtendedProperty.cs
- COAUTHIDENTITY.cs
- SafeSecurityHelper.cs