Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / ComponentResourceKeyConverter.cs / 1 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- mda.cs
- compensatingcollection.cs
- WorkflowApplicationIdleEventArgs.cs
- UdpDiscoveryEndpointElement.cs
- SliderAutomationPeer.cs
- GeometryGroup.cs
- X509SecurityTokenProvider.cs
- X509CertificateChain.cs
- VisualStyleTypesAndProperties.cs
- UMPAttributes.cs
- MenuItem.cs
- CodeNamespaceCollection.cs
- ServicePerformanceCounters.cs
- SafeProcessHandle.cs
- TextSelectionHelper.cs
- WindowsUpDown.cs
- ItemCheckedEvent.cs
- QueryPageSettingsEventArgs.cs
- ModuleConfigurationInfo.cs
- PassportAuthentication.cs
- SystemWebExtensionsSectionGroup.cs
- ToolStripSettings.cs
- NameValueSectionHandler.cs
- DataSetUtil.cs
- XmlCustomFormatter.cs
- DesignerDeviceConfig.cs
- Logging.cs
- arclist.cs
- SoapIgnoreAttribute.cs
- _RequestCacheProtocol.cs
- XmlProcessingInstruction.cs
- ClosureBinding.cs
- FixUp.cs
- TextTrailingWordEllipsis.cs
- precedingquery.cs
- CodeDomConfigurationHandler.cs
- DoubleAnimationUsingPath.cs
- XhtmlStyleClass.cs
- activationcontext.cs
- CellPartitioner.cs
- AuditLog.cs
- SerializationAttributes.cs
- SecurityNegotiationException.cs
- Quaternion.cs
- HostedTransportConfigurationBase.cs
- Adorner.cs
- TreeNodeMouseHoverEvent.cs
- TextViewBase.cs
- IDQuery.cs
- BitmapEffectDrawingContextState.cs
- ColorAnimationBase.cs
- PagerStyle.cs
- WebPartDisplayModeCollection.cs
- ToolStripDropDownItem.cs
- DataGridViewBindingCompleteEventArgs.cs
- VisualBrush.cs
- TransformerInfoCollection.cs
- WebRequestModuleElementCollection.cs
- StackSpiller.cs
- Bits.cs
- Brushes.cs
- StringFormat.cs
- SequentialWorkflowRootDesigner.cs
- PipeException.cs
- ProgressChangedEventArgs.cs
- AlternateView.cs
- CategoryGridEntry.cs
- ping.cs
- ProcessModule.cs
- UnmanagedBitmapWrapper.cs
- ToolTip.cs
- CodeDOMUtility.cs
- IERequestCache.cs
- BitmapEncoder.cs
- SubstitutionList.cs
- List.cs
- MetadataCache.cs
- JoinElimination.cs
- DelegateSerializationHolder.cs
- ServerIdentity.cs
- XmlElementAttributes.cs
- UDPClient.cs
- WinFormsUtils.cs
- BooleanAnimationBase.cs
- DataGridViewCheckBoxColumn.cs
- PerformanceCounterScope.cs
- UnsafeNativeMethods.cs
- ListItemCollection.cs
- QuotedPrintableStream.cs
- wgx_render.cs
- ViewBox.cs
- StatusBarItemAutomationPeer.cs
- SspiNegotiationTokenProvider.cs
- InvalidPipelineStoreException.cs
- DebugView.cs
- SafeFileHandle.cs
- HwndSourceKeyboardInputSite.cs
- MessageBuffer.cs
- RequestCacheManager.cs
- StringDictionary.cs