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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FormViewAutoFormat.cs
- XmlException.cs
- WindowsListView.cs
- MatchingStyle.cs
- SymbolDocumentInfo.cs
- FileLogRecordHeader.cs
- XPathDescendantIterator.cs
- FixedElement.cs
- Mapping.cs
- PeerNodeAddress.cs
- DataControlField.cs
- CreateUserErrorEventArgs.cs
- SymLanguageVendor.cs
- CreatingCookieEventArgs.cs
- Stroke2.cs
- XmlSchemaAttributeGroupRef.cs
- ContextQuery.cs
- DataServiceClientException.cs
- DBNull.cs
- SqlAggregateChecker.cs
- RelationshipSet.cs
- OleDbParameter.cs
- WindowsSpinner.cs
- InteropEnvironment.cs
- Help.cs
- SqlCacheDependency.cs
- TableHeaderCell.cs
- TextDecoration.cs
- PeerResolverSettings.cs
- FileDialogCustomPlace.cs
- TabRenderer.cs
- BaseComponentEditor.cs
- WebPartManagerInternals.cs
- ApplicationTrust.cs
- CustomLineCap.cs
- ToolStripItemImageRenderEventArgs.cs
- TrackBar.cs
- GridViewColumn.cs
- ThreadPoolTaskScheduler.cs
- EventLogLink.cs
- LocalizationParserHooks.cs
- MenuBindingsEditor.cs
- SafeWaitHandle.cs
- MDIWindowDialog.cs
- HttpResponse.cs
- TextContainerChangedEventArgs.cs
- MethodBuilderInstantiation.cs
- FixedSOMPage.cs
- ProxyWebPartManager.cs
- MessageQueuePermissionEntryCollection.cs
- OutputCacheEntry.cs
- DesignerWithHeader.cs
- EntityDataSourceContextDisposingEventArgs.cs
- DragDeltaEventArgs.cs
- IgnorePropertiesAttribute.cs
- NameValueConfigurationElement.cs
- Color.cs
- StorageComplexTypeMapping.cs
- Vector3D.cs
- MessageQueuePermissionEntry.cs
- Publisher.cs
- TextParagraphCache.cs
- StrokeNodeData.cs
- AlternateView.cs
- InfoCardArgumentException.cs
- VirtualPathUtility.cs
- GridViewCommandEventArgs.cs
- DashStyle.cs
- CfgParser.cs
- Rfc2898DeriveBytes.cs
- ValidatedControlConverter.cs
- PackagePart.cs
- MarginsConverter.cs
- MarkedHighlightComponent.cs
- TypeUtil.cs
- ObjectItemLoadingSessionData.cs
- WindowsAuthenticationModule.cs
- KeyPressEvent.cs
- RsaSecurityToken.cs
- XPathAxisIterator.cs
- TypeElement.cs
- _ShellExpression.cs
- PerfCounters.cs
- TextSpan.cs
- IntegerValidator.cs
- Brushes.cs
- TraceUtility.cs
- InheritanceUI.cs
- PingOptions.cs
- HtmlTableCell.cs
- EntityCommandExecutionException.cs
- CompiledQuery.cs
- DefaultEventAttribute.cs
- ContextStack.cs
- WorkflowMessageEventArgs.cs
- WebPartsSection.cs
- XmlRawWriter.cs
- SessionSwitchEventArgs.cs
- Rotation3DAnimationBase.cs
- DelegateHelpers.Generated.cs