Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / DialogResultConverter.cs / 1 / DialogResultConverter.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: DialogResultConverter.cs // // Description: Contains the DialogResultConverter: TypeConverter for the DialogResult class. // // History: // 10/31/2003 : HuWang - Created // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Globalization; namespace System.Windows { ////// DialogResultConverter - Converter class for converting instances of other types to and from DialogResult instances. /// public class DialogResultConverter: TypeConverter { //------------------------------------------------------------------- // // Public Methods // //------------------------------------------------------------------- #region Public Methods ////// CanConvertFrom - We don't support convert from other types to DialogResult /// ////// bool - Always return False /// public override bool CanConvertFrom(ITypeDescriptorContext typeDescriptorContext, Type sourceType) { // We don't support ConvertFrom return false; } ////// CanConvertTo - Returns whether or not this class can convert to a given type. /// ////// bool - Always return False /// public override bool CanConvertTo(ITypeDescriptorContext typeDescriptorContext, Type destinationType) { // We don't support ConvertTo return false; } ////// ConvertFrom - Attempt to convert to a DialogResult from the given object. /// Always throw InvalidOperation exception /// public override object ConvertFrom(ITypeDescriptorContext typeDescriptorContext, CultureInfo cultureInfo, object source) { throw new InvalidOperationException(SR.Get(SRID.CantSetInMarkup)); } ////// ConvertTo - Attempt to convert a DialogResult to the given type /// Always throw InvalidOperation exception /// public override object ConvertTo(ITypeDescriptorContext typeDescriptorContext, CultureInfo cultureInfo, object value, Type destinationType) { throw new InvalidOperationException(SR.Get(SRID.CantSetInMarkup)); } #endregion } } // 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. // // File: DialogResultConverter.cs // // Description: Contains the DialogResultConverter: TypeConverter for the DialogResult class. // // History: // 10/31/2003 : HuWang - Created // //--------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Globalization; namespace System.Windows { ////// DialogResultConverter - Converter class for converting instances of other types to and from DialogResult instances. /// public class DialogResultConverter: TypeConverter { //------------------------------------------------------------------- // // Public Methods // //------------------------------------------------------------------- #region Public Methods ////// CanConvertFrom - We don't support convert from other types to DialogResult /// ////// bool - Always return False /// public override bool CanConvertFrom(ITypeDescriptorContext typeDescriptorContext, Type sourceType) { // We don't support ConvertFrom return false; } ////// CanConvertTo - Returns whether or not this class can convert to a given type. /// ////// bool - Always return False /// public override bool CanConvertTo(ITypeDescriptorContext typeDescriptorContext, Type destinationType) { // We don't support ConvertTo return false; } ////// ConvertFrom - Attempt to convert to a DialogResult from the given object. /// Always throw InvalidOperation exception /// public override object ConvertFrom(ITypeDescriptorContext typeDescriptorContext, CultureInfo cultureInfo, object source) { throw new InvalidOperationException(SR.Get(SRID.CantSetInMarkup)); } ////// ConvertTo - Attempt to convert a DialogResult to the given type /// Always throw InvalidOperation exception /// public override object ConvertTo(ITypeDescriptorContext typeDescriptorContext, CultureInfo cultureInfo, object value, Type destinationType) { throw new InvalidOperationException(SR.Get(SRID.CantSetInMarkup)); } #endregion } } // 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
- BamlTreeMap.cs
- EnumerableRowCollection.cs
- FrameworkTextComposition.cs
- PseudoWebRequest.cs
- LocalizableAttribute.cs
- BitmapMetadataEnumerator.cs
- X509CertificateEndpointIdentity.cs
- RotationValidation.cs
- XamlTypeMapperSchemaContext.cs
- Keywords.cs
- Stopwatch.cs
- Utilities.cs
- XPathNodeHelper.cs
- ViewCellRelation.cs
- RequestCacheValidator.cs
- PropertyChange.cs
- AbstractSvcMapFileLoader.cs
- ButtonColumn.cs
- DocumentEventArgs.cs
- DataGridCellAutomationPeer.cs
- FormViewDeleteEventArgs.cs
- DataColumn.cs
- XsltCompileContext.cs
- PersonalizableTypeEntry.cs
- BufferBuilder.cs
- QueryConverter.cs
- CookieParameter.cs
- XamlTypeMapper.cs
- OleDbError.cs
- SoapCodeExporter.cs
- ParallelSeparator.xaml.cs
- CodeDesigner.cs
- AsyncOperationManager.cs
- XmlSchemaElement.cs
- ProxyHelper.cs
- DataGridTextBox.cs
- XPathParser.cs
- SocketAddress.cs
- SqlConnectionPoolGroupProviderInfo.cs
- RemotingHelper.cs
- WmpBitmapDecoder.cs
- StateBag.cs
- TraceRecord.cs
- SocketPermission.cs
- DataGridViewCellMouseEventArgs.cs
- ActivationWorker.cs
- COM2PropertyBuilderUITypeEditor.cs
- MasterPageBuildProvider.cs
- safelink.cs
- FunctionDetailsReader.cs
- Vector3dCollection.cs
- ActivationWorker.cs
- Light.cs
- ConditionalAttribute.cs
- BinaryObjectReader.cs
- InvalidPrinterException.cs
- dataobject.cs
- SelectorAutomationPeer.cs
- selecteditemcollection.cs
- PlatformNotSupportedException.cs
- DocumentApplication.cs
- ClassHandlersStore.cs
- HttpCachePolicyElement.cs
- _NtlmClient.cs
- StoryFragments.cs
- JournalEntryStack.cs
- PublisherMembershipCondition.cs
- SystemEvents.cs
- Viewport2DVisual3D.cs
- PartialCachingControl.cs
- MediaPlayer.cs
- IncrementalCompileAnalyzer.cs
- SerializationException.cs
- ListBoxItemAutomationPeer.cs
- RichTextBox.cs
- PropertyValue.cs
- SweepDirectionValidation.cs
- View.cs
- ItemsControlAutomationPeer.cs
- LineSegment.cs
- ItemContainerGenerator.cs
- IFlowDocumentViewer.cs
- EntityClassGenerator.cs
- TabControlEvent.cs
- PasswordDeriveBytes.cs
- IISUnsafeMethods.cs
- StateMachineWorkflow.cs
- ZoneLinkButton.cs
- MarkupCompilePass2.cs
- XmlHierarchyData.cs
- Interlocked.cs
- HMACSHA384.cs
- FusionWrap.cs
- ErrorFormatterPage.cs
- TraceContextRecord.cs
- RangeValueProviderWrapper.cs
- Base64Encoding.cs
- prompt.cs
- VirtualizingPanel.cs
- XmlSchemaAnnotation.cs