Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- HttpCacheVary.cs
- StrokeNodeOperations.cs
- ExpressionEditorAttribute.cs
- TcpClientChannel.cs
- SerTrace.cs
- UriTemplateTableMatchCandidate.cs
- HTTPNotFoundHandler.cs
- PolicyVersionConverter.cs
- EventDescriptor.cs
- Int32Converter.cs
- httpstaticobjectscollection.cs
- FixedLineResult.cs
- ChtmlTextWriter.cs
- EntityParameter.cs
- GraphicsPath.cs
- SimpleType.cs
- SettingsPropertyCollection.cs
- XamlParser.cs
- LoginView.cs
- XmlDataFileEditor.cs
- SafeNativeMethods.cs
- ServiceObjectContainer.cs
- Part.cs
- TypeConverterAttribute.cs
- XmlCharCheckingReader.cs
- DesignConnectionCollection.cs
- BaseTemplateCodeDomTreeGenerator.cs
- StreamGeometry.cs
- CodeAssignStatement.cs
- CommonXSendMessage.cs
- StringValidator.cs
- PartitionResolver.cs
- MetadataCache.cs
- CodeVariableDeclarationStatement.cs
- Stack.cs
- ActivityDesignerLayoutSerializers.cs
- CorrelationTokenTypeConvertor.cs
- Int32Animation.cs
- QuadraticBezierSegment.cs
- HtmlFormWrapper.cs
- JsonDataContract.cs
- InkCanvasInnerCanvas.cs
- ColumnTypeConverter.cs
- SectionUpdates.cs
- FrameworkContentElement.cs
- LineGeometry.cs
- Point3DCollection.cs
- ToolboxComponentsCreatingEventArgs.cs
- DependencyObject.cs
- SqlNotificationRequest.cs
- ValidationPropertyAttribute.cs
- ScaleTransform3D.cs
- DatePickerTextBox.cs
- CodeTypeConstructor.cs
- TrimSurroundingWhitespaceAttribute.cs
- AvTraceDetails.cs
- BamlMapTable.cs
- RepeatInfo.cs
- TextReader.cs
- AdRotator.cs
- ActivationArguments.cs
- GroupAggregateExpr.cs
- SqlCacheDependencyDatabaseCollection.cs
- PerformanceCounterManager.cs
- WebPartDisplayModeEventArgs.cs
- PropertyNames.cs
- HttpCapabilitiesSectionHandler.cs
- Descriptor.cs
- __Filters.cs
- ConfigurationStrings.cs
- DecimalStorage.cs
- TraceEventCache.cs
- IteratorFilter.cs
- ChangeProcessor.cs
- TextEditorDragDrop.cs
- XmlName.cs
- CounterSample.cs
- GetPageNumberCompletedEventArgs.cs
- HttpModuleAction.cs
- DecimalStorage.cs
- AssemblyHash.cs
- PhotoPrintingIntent.cs
- HttpChannelFactory.cs
- TaskFileService.cs
- RemotingConfigParser.cs
- SiteOfOriginPart.cs
- NetCodeGroup.cs
- AQNBuilder.cs
- printdlgexmarshaler.cs
- ContentFileHelper.cs
- ResourceProviderFactory.cs
- CacheAxisQuery.cs
- XmlDesignerDataSourceView.cs
- ArgumentDirectionHelper.cs
- SQLMoneyStorage.cs
- ReferenceConverter.cs
- FontStretchConverter.cs
- DictionaryEntry.cs
- ScriptBehaviorDescriptor.cs
- AvTrace.cs