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 / Markup / TemplateKeyConverter.cs / 1 / TemplateKeyConverter.cs
/****************************************************************************\ * * File: TemplateKeyConverter.cs * * Class for converting a given TemplateKey to a string * * Copyright (C) 2005 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.ComponentModel; // for TypeConverter using System.Globalization; // for CultureInfo using System.Reflection; using MS.Utility; using MS.Internal; using System.Windows; using System.ComponentModel.Design.Serialization; using System.Windows.Documents; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Markup { ////// Class for converting a given TemplateKey to a string /// public sealed class TemplateKeyConverter : TypeConverter { #region Public Methods ////// CanConvertFrom() /// /// ITypeDescriptorContext /// type to convert from ///true if the given type can be converted, flase otherwise public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return false; } ////// TypeConverter method override. /// /// ITypeDescriptorContext /// Type to convert to ///true if conversion is possible public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { return false; } ////// ConvertFrom() -TypeConverter method override. using the givein name to return DependencyProperty /// /// ITypeDescriptorContext /// CultureInfo /// Object to convert from ///instance of Command public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object source) { throw GetConvertFromException(source); } ////// ConvertTo() - Serialization purposes, returns the string from Command.Name by adding ownerType.FullName /// /// ITypeDescriptorContext /// CultureInfo /// the object to convert from /// the type to convert to ///string object, if the destination type is string public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { throw GetConvertToException(value, destinationType); } #endregion Public Methods } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /****************************************************************************\ * * File: TemplateKeyConverter.cs * * Class for converting a given TemplateKey to a string * * Copyright (C) 2005 by Microsoft Corporation. All rights reserved. * \***************************************************************************/ using System; using System.ComponentModel; // for TypeConverter using System.Globalization; // for CultureInfo using System.Reflection; using MS.Utility; using MS.Internal; using System.Windows; using System.ComponentModel.Design.Serialization; using System.Windows.Documents; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Markup { ////// Class for converting a given TemplateKey to a string /// public sealed class TemplateKeyConverter : TypeConverter { #region Public Methods ////// CanConvertFrom() /// /// ITypeDescriptorContext /// type to convert from ///true if the given type can be converted, flase otherwise public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { return false; } ////// TypeConverter method override. /// /// ITypeDescriptorContext /// Type to convert to ///true if conversion is possible public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { return false; } ////// ConvertFrom() -TypeConverter method override. using the givein name to return DependencyProperty /// /// ITypeDescriptorContext /// CultureInfo /// Object to convert from ///instance of Command public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object source) { throw GetConvertFromException(source); } ////// ConvertTo() - Serialization purposes, returns the string from Command.Name by adding ownerType.FullName /// /// ITypeDescriptorContext /// CultureInfo /// the object to convert from /// the type to convert to ///string object, if the destination type is string public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { throw GetConvertToException(value, destinationType); } #endregion Public Methods } } // 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
- ToolboxBitmapAttribute.cs
- dataprotectionpermission.cs
- MenuItemBinding.cs
- ExceptionHandlers.cs
- ObjectIDGenerator.cs
- BindingRestrictions.cs
- AmbientLight.cs
- MethodCallConverter.cs
- TextEncodedRawTextWriter.cs
- PartialCachingAttribute.cs
- XamlReader.cs
- XmlCharCheckingReader.cs
- TabOrder.cs
- HttpStreamXmlDictionaryReader.cs
- TextSchema.cs
- SessionSwitchEventArgs.cs
- RegexCharClass.cs
- ColorTransformHelper.cs
- SQLInt64.cs
- BehaviorService.cs
- FieldNameLookup.cs
- DoubleMinMaxAggregationOperator.cs
- HtmlLink.cs
- RoleBoolean.cs
- Point3DIndependentAnimationStorage.cs
- ConstrainedDataObject.cs
- ObjectViewFactory.cs
- DataGridViewRowPostPaintEventArgs.cs
- PageContent.cs
- DbTypeMap.cs
- ByteStack.cs
- PropertyIDSet.cs
- DoWorkEventArgs.cs
- TraceContextRecord.cs
- Utilities.cs
- _OverlappedAsyncResult.cs
- IndexedEnumerable.cs
- MemberInfoSerializationHolder.cs
- AdapterUtil.cs
- Variable.cs
- DependencyPropertyConverter.cs
- SqlCacheDependencyDatabaseCollection.cs
- SendMailErrorEventArgs.cs
- TreeViewImageIndexConverter.cs
- FixedTextPointer.cs
- DataGridViewAutoSizeModeEventArgs.cs
- InvalidFilterCriteriaException.cs
- SamlAdvice.cs
- BufferedWebEventProvider.cs
- ConsoleKeyInfo.cs
- StorageAssociationTypeMapping.cs
- MetadataItemSerializer.cs
- ModuleConfigurationInfo.cs
- X509SubjectKeyIdentifierClause.cs
- SqlMultiplexer.cs
- UpdateExpressionVisitor.cs
- SelectionEditingBehavior.cs
- AssemblyNameProxy.cs
- SignatureToken.cs
- DbProviderConfigurationHandler.cs
- WpfXamlType.cs
- UnknownBitmapDecoder.cs
- MessageAction.cs
- Compress.cs
- TextAutomationPeer.cs
- DrawingContextDrawingContextWalker.cs
- ControlCollection.cs
- DiscreteKeyFrames.cs
- DBSchemaRow.cs
- MultilineStringEditor.cs
- EntityContainerRelationshipSet.cs
- CatalogPart.cs
- PathFigureCollection.cs
- ThrowHelper.cs
- HierarchicalDataTemplate.cs
- InitializationEventAttribute.cs
- SchemaImporterExtension.cs
- XmlAttributes.cs
- LayoutEvent.cs
- HttpProfileGroupBase.cs
- TypeExtensionConverter.cs
- LeftCellWrapper.cs
- FixedElement.cs
- XmlAttributes.cs
- DataRowChangeEvent.cs
- CustomAttributeSerializer.cs
- DetailsViewRowCollection.cs
- PointConverter.cs
- StylusLogic.cs
- SizeChangedInfo.cs
- Compensation.cs
- FlowDocumentReader.cs
- MaskDesignerDialog.cs
- FixedSOMPageElement.cs
- QuaternionValueSerializer.cs
- Filter.cs
- CodeNamespaceImportCollection.cs
- ControlPager.cs
- Journaling.cs
- DataPagerFieldItem.cs