Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / ComponentResourceKeyConverter.cs / 1305600 / ComponentResourceKeyConverter.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Globalization; using System.ComponentModel.Design.Serialization; using System.Diagnostics; namespace System.Windows.Markup { ////// TypeConverter for a resource value expression /// public class ComponentResourceKeyConverter : ExpressionConverter { ////// TypeConverter method override. /// /// /// ITypeDescriptorContext /// /// /// Type to convert from /// ////// true if conversion is possible /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == null) { throw new ArgumentNullException("sourceType"); } return base.CanConvertFrom(context, sourceType); } ////// TypeConverter method override. /// /// /// 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"); } 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 ComponentResourceKey key = value as ComponentResourceKey; if (key == null) { throw new ArgumentException(SR.Get(SRID.MustBeOfType, "value", "ComponentResourceKey")); } if (destinationType == null) { throw new ArgumentNullException("destinationType"); } return base.CanConvertTo(context, destinationType); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Globalization; using System.ComponentModel.Design.Serialization; using System.Diagnostics; namespace System.Windows.Markup { ////// TypeConverter for a resource value expression /// public class ComponentResourceKeyConverter : ExpressionConverter { ////// TypeConverter method override. /// /// /// ITypeDescriptorContext /// /// /// Type to convert from /// ////// true if conversion is possible /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == null) { throw new ArgumentNullException("sourceType"); } return base.CanConvertFrom(context, sourceType); } ////// TypeConverter method override. /// /// /// 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"); } 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 ComponentResourceKey key = value as ComponentResourceKey; if (key == null) { throw new ArgumentException(SR.Get(SRID.MustBeOfType, "value", "ComponentResourceKey")); } if (destinationType == null) { throw new ArgumentNullException("destinationType"); } return base.CanConvertTo(context, 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
- StrongNameKeyPair.cs
- Odbc32.cs
- SmtpDigestAuthenticationModule.cs
- MouseEvent.cs
- XamlContextStack.cs
- BamlRecordWriter.cs
- TableItemStyle.cs
- EncoderExceptionFallback.cs
- StatusBarPanelClickEvent.cs
- PaintValueEventArgs.cs
- ComponentResourceKey.cs
- AutoGeneratedField.cs
- AutomationProperties.cs
- ViewLoader.cs
- IdentityNotMappedException.cs
- PathTooLongException.cs
- CompilerHelpers.cs
- DesignerAttribute.cs
- InfoCardSymmetricCrypto.cs
- TransformerTypeCollection.cs
- PropertyDescriptorCollection.cs
- WebPartZoneBase.cs
- LowerCaseStringConverter.cs
- WebControlsSection.cs
- MulticastNotSupportedException.cs
- ServerTooBusyException.cs
- TimelineGroup.cs
- cookie.cs
- SemanticTag.cs
- formatter.cs
- DictionarySectionHandler.cs
- JoinElimination.cs
- RijndaelManagedTransform.cs
- DecimalConverter.cs
- ButtonAutomationPeer.cs
- WebPartCollection.cs
- ReversePositionQuery.cs
- VerifyHashRequest.cs
- ContentPosition.cs
- StoryFragments.cs
- Context.cs
- ListenerConnectionModeReader.cs
- DataGridViewTextBoxCell.cs
- SystemWebExtensionsSectionGroup.cs
- columnmapkeybuilder.cs
- SecurityNegotiationException.cs
- BaseParaClient.cs
- GenericUriParser.cs
- IntPtr.cs
- AutomationPeer.cs
- ByteAnimationBase.cs
- BindingMAnagerBase.cs
- TemplateManager.cs
- LogArchiveSnapshot.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- sqlstateclientmanager.cs
- SplitterPanel.cs
- RegisteredDisposeScript.cs
- FieldToken.cs
- DynamicRenderer.cs
- Material.cs
- HttpModulesSection.cs
- TextServicesCompartmentEventSink.cs
- CaseExpr.cs
- TypedReference.cs
- StreamGeometry.cs
- SqlOuterApplyReducer.cs
- VBIdentifierName.cs
- HtmlInputFile.cs
- BinHexEncoder.cs
- DBSchemaRow.cs
- InstanceCollisionException.cs
- TextRange.cs
- ConfigurationManagerHelper.cs
- XmlSchemaComplexContent.cs
- Grid.cs
- TargetConverter.cs
- HostingEnvironmentSection.cs
- HistoryEventArgs.cs
- ImageSourceConverter.cs
- DirectionalLight.cs
- Hashtable.cs
- Soap12ProtocolReflector.cs
- HtmlInputControl.cs
- SapiRecoContext.cs
- Profiler.cs
- thaishape.cs
- Viewport2DVisual3D.cs
- CodeDomSerializerException.cs
- WebBrowserNavigatedEventHandler.cs
- ByteStreamMessageEncoder.cs
- ImageField.cs
- CodeNamespaceImportCollection.cs
- ValueConversionAttribute.cs
- SqlHelper.cs
- Point3D.cs
- BeginStoryboard.cs
- StartUpEventArgs.cs
- RectKeyFrameCollection.cs
- ResXResourceWriter.cs