Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- GeometryValueSerializer.cs
- AnnouncementClient.cs
- WebDisplayNameAttribute.cs
- OptimisticConcurrencyException.cs
- SmtpAuthenticationManager.cs
- TaskHelper.cs
- IPGlobalProperties.cs
- ComplexTypeEmitter.cs
- DataListDesigner.cs
- CodeAttachEventStatement.cs
- Typeface.cs
- wgx_commands.cs
- EnvelopedPkcs7.cs
- DocumentPageViewAutomationPeer.cs
- EarlyBoundInfo.cs
- OperationCanceledException.cs
- PropertyConverter.cs
- FormDesigner.cs
- SqlGenericUtil.cs
- UnsafeNativeMethods.cs
- EventDescriptor.cs
- ColorDialog.cs
- ProgressBarRenderer.cs
- WSUtilitySpecificationVersion.cs
- RegexWorker.cs
- DoubleLinkList.cs
- NativeMethodsCLR.cs
- TypeToStringValueConverter.cs
- IntellisenseTextBox.cs
- SchemaContext.cs
- EmptyStringExpandableObjectConverter.cs
- _TLSstream.cs
- counter.cs
- XmlChoiceIdentifierAttribute.cs
- ProviderCollection.cs
- DocumentViewerAutomationPeer.cs
- ByteRangeDownloader.cs
- ColorConvertedBitmap.cs
- DynamicRendererThreadManager.cs
- TemplateBuilder.cs
- TypeUsageBuilder.cs
- RectAnimationBase.cs
- HttpStreams.cs
- RadialGradientBrush.cs
- x509utils.cs
- CompilerParameters.cs
- AstTree.cs
- ScrollChangedEventArgs.cs
- ObfuscationAttribute.cs
- LabelEditEvent.cs
- NullableConverter.cs
- Int32RectValueSerializer.cs
- ClassicBorderDecorator.cs
- SamlSecurityToken.cs
- TextFormatter.cs
- Walker.cs
- SQLInt64.cs
- CmsUtils.cs
- ListSortDescription.cs
- SharedUtils.cs
- Int64Storage.cs
- ClientConfigPaths.cs
- PropertyIDSet.cs
- RenderCapability.cs
- ObjectStateFormatter.cs
- WebServiceEnumData.cs
- PriorityQueue.cs
- WebDisplayNameAttribute.cs
- ExpressionsCollectionConverter.cs
- CancellationTokenRegistration.cs
- EntityWrapper.cs
- Win32Native.cs
- ReflectionUtil.cs
- UriScheme.cs
- Comparer.cs
- InternalsVisibleToAttribute.cs
- KoreanLunisolarCalendar.cs
- MetaTableHelper.cs
- WindowsFormsEditorServiceHelper.cs
- ConfigurationManager.cs
- Comparer.cs
- GlyphInfoList.cs
- CompiledELinqQueryState.cs
- Helpers.cs
- SecurityHelper.cs
- FacetDescription.cs
- SessionIDManager.cs
- MenuItemBindingCollection.cs
- PTManager.cs
- HtmlElementEventArgs.cs
- ViewGenResults.cs
- BehaviorEditorPart.cs
- OdbcReferenceCollection.cs
- Expr.cs
- WebBrowserUriTypeConverter.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- SqlDataSourceFilteringEventArgs.cs
- AnnouncementDispatcherAsyncResult.cs
- BuildManagerHost.cs