Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / KeyEvent.cs / 1 / KeyEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; using System.Diagnostics.CodeAnalysis; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class KeyEventArgs : EventArgs { ////// Provides data for the ///or /// event. /// /// /// Contains key data for KeyDown and KeyUp events. This is a combination /// of keycode and modifer flags. /// private readonly Keys keyData; ////// /// Determines if this event has been handled by a handler. If handled, the /// key event will not be sent along to Windows. If not handled, the event /// will be sent to Windows for default processing. /// private bool handled = false; ////// /// private bool suppressKeyPress = false; ////// /// public KeyEventArgs(Keys keyData) { this.keyData = keyData; } ////// Initializes a new /// instance of the ///class. /// /// /// public virtual 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. /// ////// /// // public bool Handled { get { return handled; } set { handled = value; } } ////// Gets or sets a value /// indicating whether the event was handled. /// ////// /// //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 virtual bool Shift { get { return (keyData & Keys.Shift) == Keys.Shift; } } ////// Gets /// a value indicating whether the SHIFT key was pressed. /// ////// /// // public bool SuppressKeyPress { get { return suppressKeyPress; } set { suppressKeyPress = value; handled = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; using System.Diagnostics.CodeAnalysis; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class KeyEventArgs : EventArgs { ////// Provides data for the ///or /// event. /// /// /// Contains key data for KeyDown and KeyUp events. This is a combination /// of keycode and modifer flags. /// private readonly Keys keyData; ////// /// Determines if this event has been handled by a handler. If handled, the /// key event will not be sent along to Windows. If not handled, the event /// will be sent to Windows for default processing. /// private bool handled = false; ////// /// private bool suppressKeyPress = false; ////// /// public KeyEventArgs(Keys keyData) { this.keyData = keyData; } ////// Initializes a new /// instance of the ///class. /// /// /// public virtual 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. /// ////// /// // public bool Handled { get { return handled; } set { handled = value; } } ////// Gets or sets a value /// indicating whether the event was handled. /// ////// /// //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 virtual bool Shift { get { return (keyData & Keys.Shift) == Keys.Shift; } } ////// Gets /// a value indicating whether the SHIFT key was pressed. /// ////// /// // public bool SuppressKeyPress { get { return suppressKeyPress; } set { suppressKeyPress = value; handled = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Mapping.cs
- PrintController.cs
- AnnotationAdorner.cs
- HostingPreferredMapPath.cs
- DataTableReaderListener.cs
- MLangCodePageEncoding.cs
- EntityViewGenerator.cs
- MobileUITypeEditor.cs
- Transform3DGroup.cs
- PackWebRequest.cs
- ConfigXmlText.cs
- ContentPlaceHolder.cs
- TextServicesHost.cs
- CancellationHandlerDesigner.cs
- PropertyItemInternal.cs
- Set.cs
- QuaternionIndependentAnimationStorage.cs
- BitmapEffectGroup.cs
- PageHandlerFactory.cs
- TextAnchor.cs
- ConvertersCollection.cs
- ConstrainedDataObject.cs
- DbConnectionPoolCounters.cs
- RowsCopiedEventArgs.cs
- InteropBitmapSource.cs
- ExpressionBuilder.cs
- X509UI.cs
- Utilities.cs
- TypedAsyncResult.cs
- NamedObject.cs
- EntityParameter.cs
- securitycriticaldataformultiplegetandset.cs
- Compiler.cs
- FrameworkRichTextComposition.cs
- _Win32.cs
- ChtmlPageAdapter.cs
- LastQueryOperator.cs
- StringBuilder.cs
- DetailsViewUpdatedEventArgs.cs
- DocumentApplication.cs
- DataObjectSettingDataEventArgs.cs
- BStrWrapper.cs
- coordinatorfactory.cs
- RegisteredArrayDeclaration.cs
- DataObject.cs
- PageAsyncTaskManager.cs
- ResourceDictionaryCollection.cs
- XmlSchemaInfo.cs
- StylusPointCollection.cs
- xmlfixedPageInfo.cs
- EntityParameter.cs
- CatalogZoneBase.cs
- ResourcePermissionBaseEntry.cs
- HttpCacheVaryByContentEncodings.cs
- Hash.cs
- ActivityPreviewDesigner.cs
- SqlDataSource.cs
- SQLInt64Storage.cs
- BufferAllocator.cs
- HtmlDocument.cs
- GridViewRowCollection.cs
- QuaternionRotation3D.cs
- SqlBooleanMismatchVisitor.cs
- ControlAdapter.cs
- GenericEnumConverter.cs
- TimeoutValidationAttribute.cs
- HttpHandler.cs
- PropertyDescriptor.cs
- Calendar.cs
- UDPClient.cs
- BinaryCommonClasses.cs
- DiscreteKeyFrames.cs
- Stroke.cs
- ClientBuildManager.cs
- InputLanguageManager.cs
- Annotation.cs
- DataListItem.cs
- LinqMaximalSubtreeNominator.cs
- ConcurrentQueue.cs
- UnsafeNativeMethods.cs
- followingsibling.cs
- ErrorEventArgs.cs
- serverconfig.cs
- ConstraintStruct.cs
- PropertyDescriptorGridEntry.cs
- ViewGenerator.cs
- ReadContentAsBinaryHelper.cs
- BaseTreeIterator.cs
- documentsequencetextpointer.cs
- CancellationToken.cs
- MatrixCamera.cs
- ThemeDictionaryExtension.cs
- TreeViewItem.cs
- EntityWrapperFactory.cs
- BindingSource.cs
- RuleDefinitions.cs
- UnsafeNativeMethods.cs
- CaseInsensitiveOrdinalStringComparer.cs
- QueryOptionExpression.cs
- UnsafeNativeMethods.cs