Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Input / Command / KeyGestureValueSerializer.cs / 1 / KeyGestureValueSerializer.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: KeyGestureValueSerializer - Serializes a KeyGesture // to and from a string // // // History: // 08/04/2005 : Chuck Jazdzewski - Created // //--------------------------------------------------------------------------- using System; using System.ComponentModel; // for TypeConverter using System.Globalization; // for CultureInfo using System.Windows; using System.Windows.Input; using System.Windows.Markup; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Input { ////// KeyGestureValueSerializer - Converter class for serializing a KeyGesture /// public class KeyGestureValueSerializer : ValueSerializer { ////// CanConvertFromString() /// /// /// ////// public override bool CanConvertFromString(string value, IValueSerializerContext context) { return true; } /// /// CanConvertToString() /// /// /// ////// public override bool CanConvertToString(object value, IValueSerializerContext context) { KeyGesture keyGesture = value as KeyGesture; #pragma warning disable 6506 return (keyGesture != null) && ModifierKeysConverter.IsDefinedModifierKeys(keyGesture.Modifiers) && KeyGestureConverter.IsDefinedKey(keyGesture.Key); #pragma warning restore 6506 } /// /// ConvertFromString() /// /// /// ///public override object ConvertFromString(string value, IValueSerializerContext context) { TypeConverter converter = TypeDescriptor.GetConverter(typeof(KeyGesture)); if (converter != null) return converter.ConvertFromString(value); else return base.ConvertFromString(value, context); } /// /// ConvertToString() /// /// /// ///public override string ConvertToString(object value, IValueSerializerContext context) { TypeConverter converter = TypeDescriptor.GetConverter(typeof(KeyGesture)); if (converter != null) return converter.ConvertToInvariantString(value); else return base.ConvertToString(value, context); } } } // 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. // // // // Description: KeyGestureValueSerializer - Serializes a KeyGesture // to and from a string // // // History: // 08/04/2005 : Chuck Jazdzewski - Created // //--------------------------------------------------------------------------- using System; using System.ComponentModel; // for TypeConverter using System.Globalization; // for CultureInfo using System.Windows; using System.Windows.Input; using System.Windows.Markup; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Input { ////// KeyGestureValueSerializer - Converter class for serializing a KeyGesture /// public class KeyGestureValueSerializer : ValueSerializer { ////// CanConvertFromString() /// /// /// ////// public override bool CanConvertFromString(string value, IValueSerializerContext context) { return true; } /// /// CanConvertToString() /// /// /// ////// public override bool CanConvertToString(object value, IValueSerializerContext context) { KeyGesture keyGesture = value as KeyGesture; #pragma warning disable 6506 return (keyGesture != null) && ModifierKeysConverter.IsDefinedModifierKeys(keyGesture.Modifiers) && KeyGestureConverter.IsDefinedKey(keyGesture.Key); #pragma warning restore 6506 } /// /// ConvertFromString() /// /// /// ///public override object ConvertFromString(string value, IValueSerializerContext context) { TypeConverter converter = TypeDescriptor.GetConverter(typeof(KeyGesture)); if (converter != null) return converter.ConvertFromString(value); else return base.ConvertFromString(value, context); } /// /// ConvertToString() /// /// /// ///public override string ConvertToString(object value, IValueSerializerContext context) { TypeConverter converter = TypeDescriptor.GetConverter(typeof(KeyGesture)); if (converter != null) return converter.ConvertToInvariantString(value); else return base.ConvertToString(value, context); } } } // 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
- CodeAccessSecurityEngine.cs
- GradientStop.cs
- CodeIndexerExpression.cs
- TogglePattern.cs
- HtmlInputText.cs
- FreezableCollection.cs
- X509Utils.cs
- FontWeight.cs
- _ScatterGatherBuffers.cs
- CommonDialog.cs
- SemanticResolver.cs
- BitmapCache.cs
- MsmqHostedTransportManager.cs
- ToolStripDropDownClosingEventArgs.cs
- SafeNativeMemoryHandle.cs
- MimeBasePart.cs
- DeferredBinaryDeserializerExtension.cs
- ConnectionStringSettings.cs
- DbParameterCollectionHelper.cs
- LambdaCompiler.Statements.cs
- FixUpCollection.cs
- IndexedSelectQueryOperator.cs
- TextureBrush.cs
- PackageDocument.cs
- WindowsGraphicsWrapper.cs
- CrossAppDomainChannel.cs
- WebPartConnectionsEventArgs.cs
- Symbol.cs
- Schema.cs
- ApplicationActivator.cs
- AuthenticationManager.cs
- HttpRequestBase.cs
- HelpPage.cs
- Point.cs
- ConnectionConsumerAttribute.cs
- TransformerTypeCollection.cs
- HttpModuleCollection.cs
- XMLDiffLoader.cs
- XD.cs
- PixelFormatConverter.cs
- ComplexTypeEmitter.cs
- DataGridViewCellCollection.cs
- DesignerActionList.cs
- HandledMouseEvent.cs
- ObjectStateManager.cs
- HttpServerVarsCollection.cs
- ComboBox.cs
- ToolStripRendererSwitcher.cs
- DeviceContexts.cs
- CngAlgorithm.cs
- BuildProvidersCompiler.cs
- ListViewUpdateEventArgs.cs
- WebPartEditorApplyVerb.cs
- SecurityKeyIdentifierClause.cs
- ContextItem.cs
- WinInet.cs
- SqlDependencyUtils.cs
- PermissionRequestEvidence.cs
- ProfileGroupSettings.cs
- SponsorHelper.cs
- LineSegment.cs
- XmlCompatibilityReader.cs
- ApplicationContext.cs
- AppDomainFactory.cs
- DateTimeSerializationSection.cs
- SpellerError.cs
- ViewStateException.cs
- DataRowComparer.cs
- Compiler.cs
- DbConnectionOptions.cs
- BulletChrome.cs
- SqlDataSourceRefreshSchemaForm.cs
- CommandLineParser.cs
- DataListItem.cs
- FormViewPagerRow.cs
- DataViewManagerListItemTypeDescriptor.cs
- ISFClipboardData.cs
- ToolStripManager.cs
- OrderedDictionaryStateHelper.cs
- InProcStateClientManager.cs
- Themes.cs
- HMACSHA384.cs
- sqlnorm.cs
- HttpClientProtocol.cs
- DataBindingExpressionBuilder.cs
- WindowsHyperlink.cs
- arclist.cs
- securitycriticaldataformultiplegetandset.cs
- BitSet.cs
- DataGridViewLinkCell.cs
- parserscommon.cs
- SizeAnimationUsingKeyFrames.cs
- TransformationRules.cs
- MenuAutomationPeer.cs
- BooleanToVisibilityConverter.cs
- ADMembershipUser.cs
- SimpleMailWebEventProvider.cs
- SignalGate.cs
- XmlnsDefinitionAttribute.cs
- DefaultValueTypeConverter.cs