Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / PreviewKeyDownEventArgs.cs / 1305376 / PreviewKeyDownEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; ////// /// /// public class PreviewKeyDownEventArgs : EventArgs { private readonly Keys _keyData; private bool _isInputKey; ////// Provides data for the PreviewKeyDownEvent /// ////// /// public PreviewKeyDownEventArgs(Keys keyData) { _keyData = keyData; } ///[To be supplied.] ////// /// public bool Alt { get { return (_keyData & Keys.Alt) == Keys.Alt; } } ////// Gets a value indicating whether the ALT key was pressed. /// ////// /// public bool Control { get { return (_keyData & Keys.Control) == Keys.Control; } } ////// Gets a value indicating whether the CTRL key was pressed. /// ////// /// //subhag : changed the behaviour of the KeyCode as per the new requirements. public Keys KeyCode { [ // Keys is discontiguous so we have to use Enum.IsDefined. SuppressMessage("Microsoft.Performance", "CA1803:AvoidCostlyCallsWherePossible") ] get { Keys keyGenerated = _keyData & Keys.KeyCode; // since Keys can be discontiguous, keeping Enum.IsDefined. if (!Enum.IsDefined(typeof(Keys),(int)keyGenerated)) return Keys.None; else return keyGenerated; } } ////// Gets the keyboard code for a ///or /// event. /// /// /// //subhag : added the KeyValue as per the new requirements. public int KeyValue { get { return (int)(_keyData & Keys.KeyCode); } } ////// Gets the keyboard value for a ///or /// event. /// /// /// public Keys KeyData { get { return _keyData; } } ////// Gets the key data for a ///or /// event. /// /// /// public Keys Modifiers { get { return _keyData & Keys.Modifiers; } } ////// Gets the modifier flags for a ///or event. /// This indicates which modifier keys (CTRL, SHIFT, and/or ALT) were pressed. /// /// /// public bool Shift { get { return (_keyData & Keys.Shift) == Keys.Shift; } } public bool IsInputKey { get { return _isInputKey; } set { _isInputKey = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets /// a value indicating whether the SHIFT key was pressed. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; ////// /// /// public class PreviewKeyDownEventArgs : EventArgs { private readonly Keys _keyData; private bool _isInputKey; ////// Provides data for the PreviewKeyDownEvent /// ////// /// public PreviewKeyDownEventArgs(Keys keyData) { _keyData = keyData; } ///[To be supplied.] ////// /// public bool Alt { get { return (_keyData & Keys.Alt) == Keys.Alt; } } ////// Gets a value indicating whether the ALT key was pressed. /// ////// /// public bool Control { get { return (_keyData & Keys.Control) == Keys.Control; } } ////// Gets a value indicating whether the CTRL key was pressed. /// ////// /// //subhag : changed the behaviour of the KeyCode as per the new requirements. public Keys KeyCode { [ // Keys is discontiguous so we have to use Enum.IsDefined. SuppressMessage("Microsoft.Performance", "CA1803:AvoidCostlyCallsWherePossible") ] get { Keys keyGenerated = _keyData & Keys.KeyCode; // since Keys can be discontiguous, keeping Enum.IsDefined. if (!Enum.IsDefined(typeof(Keys),(int)keyGenerated)) return Keys.None; else return keyGenerated; } } ////// Gets the keyboard code for a ///or /// event. /// /// /// //subhag : added the KeyValue as per the new requirements. public int KeyValue { get { return (int)(_keyData & Keys.KeyCode); } } ////// Gets the keyboard value for a ///or /// event. /// /// /// public Keys KeyData { get { return _keyData; } } ////// Gets the key data for a ///or /// event. /// /// /// public Keys Modifiers { get { return _keyData & Keys.Modifiers; } } ////// Gets the modifier flags for a ///or event. /// This indicates which modifier keys (CTRL, SHIFT, and/or ALT) were pressed. /// /// /// public bool Shift { get { return (_keyData & Keys.Shift) == Keys.Shift; } } public bool IsInputKey { get { return _isInputKey; } set { _isInputKey = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets /// a value indicating whether the SHIFT key was pressed. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- sitestring.cs
- BrowserPolicyValidator.cs
- GcSettings.cs
- ReflectionTypeLoadException.cs
- BitVector32.cs
- KnownTypes.cs
- StreamInfo.cs
- TemplatePartAttribute.cs
- SqlParameter.cs
- WsatStrings.cs
- InitializationEventAttribute.cs
- RemotingAttributes.cs
- WinFormsUtils.cs
- Margins.cs
- StopStoryboard.cs
- ObjectNavigationPropertyMapping.cs
- SmiGettersStream.cs
- GroupPartitionExpr.cs
- RepeaterItemEventArgs.cs
- FormViewRow.cs
- DynamicArgumentDialog.cs
- lengthconverter.cs
- UpDownBaseDesigner.cs
- MappingException.cs
- DataGridViewTopLeftHeaderCell.cs
- HttpContextServiceHost.cs
- TextSchema.cs
- TextParagraph.cs
- Point3D.cs
- InvalidDataException.cs
- SafeRightsManagementQueryHandle.cs
- OutOfProcStateClientManager.cs
- TranslateTransform.cs
- VariableValue.cs
- FrameworkElement.cs
- TokenizerHelper.cs
- LocalValueEnumerator.cs
- LambdaCompiler.Lambda.cs
- SafeNativeMethods.cs
- DataColumn.cs
- EntityKeyElement.cs
- CryptoStream.cs
- StandardBindingReliableSessionElement.cs
- GenerateTemporaryTargetAssembly.cs
- RepeatBehavior.cs
- RSAOAEPKeyExchangeFormatter.cs
- XpsSerializerFactory.cs
- ScalarType.cs
- TimeoutValidationAttribute.cs
- XmlDigitalSignatureProcessor.cs
- WindowsContainer.cs
- URI.cs
- BrowserDefinition.cs
- CodeParameterDeclarationExpressionCollection.cs
- StyleHelper.cs
- DropDownList.cs
- FreeFormPanel.cs
- CustomAttributeFormatException.cs
- BreadCrumbTextConverter.cs
- QueryOutputWriter.cs
- coordinator.cs
- WebPartConnection.cs
- CodeGotoStatement.cs
- DoubleCollection.cs
- unitconverter.cs
- SerializationInfoEnumerator.cs
- Imaging.cs
- PlatformCulture.cs
- TimeSpanFormat.cs
- PersonalizationState.cs
- CacheEntry.cs
- TextSpanModifier.cs
- AsymmetricSignatureDeformatter.cs
- ParallelSeparator.xaml.cs
- SecurityRuntime.cs
- RowVisual.cs
- GuidelineSet.cs
- ProxyHelper.cs
- BatchServiceHost.cs
- HyperLinkColumn.cs
- ProxyGenerator.cs
- SByteConverter.cs
- DateBoldEvent.cs
- OneWayElement.cs
- Listbox.cs
- SetState.cs
- __Filters.cs
- QueryOpeningEnumerator.cs
- NumberSubstitution.cs
- PageThemeBuildProvider.cs
- SafeNativeMethods.cs
- _ListenerRequestStream.cs
- ConfigurationStrings.cs
- UniqueSet.cs
- Point3DAnimationBase.cs
- Win32Native.cs
- DecimalAverageAggregationOperator.cs
- Camera.cs
- SqlNotificationEventArgs.cs
- AlphabeticalEnumConverter.cs