Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / KeyEvent.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DiscoveryInnerClientAdhocCD1.cs
- Cursors.cs
- ClockController.cs
- DataSourceCollectionBase.cs
- PrimitiveXmlSerializers.cs
- WindowsIdentity.cs
- InheritanceContextHelper.cs
- PageAsyncTask.cs
- TextBoxBaseDesigner.cs
- ByeMessage11.cs
- SByte.cs
- EntityProviderServices.cs
- DataServiceHostFactory.cs
- WebPartEditorOkVerb.cs
- Size3D.cs
- TextFormatter.cs
- SweepDirectionValidation.cs
- ToolboxItemCollection.cs
- ToolStripItemClickedEventArgs.cs
- ErrorWebPart.cs
- LeafCellTreeNode.cs
- FieldNameLookup.cs
- CodeChecksumPragma.cs
- Gdiplus.cs
- EmptyCollection.cs
- DesignerView.cs
- SHA256.cs
- PageParser.cs
- EventDescriptorCollection.cs
- MetadataProperty.cs
- SemanticResultValue.cs
- FaultCallbackWrapper.cs
- EntityDesignerDataSourceView.cs
- ToolStripItem.cs
- PageCodeDomTreeGenerator.cs
- XmlSchemaComplexType.cs
- EntityDataSourceContainerNameConverter.cs
- RepeaterItemCollection.cs
- BezierSegment.cs
- XmlEntity.cs
- TextServicesDisplayAttribute.cs
- StrokeNodeOperations.cs
- ObjectListField.cs
- EditorAttribute.cs
- BasicSecurityProfileVersion.cs
- WindowsListViewItemStartMenu.cs
- DataControlCommands.cs
- PropertyRef.cs
- HashStream.cs
- TextElementCollection.cs
- ConfigurationValidatorAttribute.cs
- PointCollection.cs
- LocatorGroup.cs
- ListItemConverter.cs
- SystemNetworkInterface.cs
- ISCIIEncoding.cs
- DbProviderFactoriesConfigurationHandler.cs
- SmiXetterAccessMap.cs
- HitTestResult.cs
- Int32Storage.cs
- InlineCategoriesDocument.cs
- WebPartsSection.cs
- PagesChangedEventArgs.cs
- BindingNavigatorDesigner.cs
- OracleBinary.cs
- MarginCollapsingState.cs
- DocumentEventArgs.cs
- PropertyGridEditorPart.cs
- XPathScanner.cs
- IsolatedStorageException.cs
- PrintPreviewDialog.cs
- CodeExpressionRuleDeclaration.cs
- WorkflowPersistenceService.cs
- View.cs
- SQLRoleProvider.cs
- ResourceKey.cs
- precedingquery.cs
- Config.cs
- SelectorItemAutomationPeer.cs
- InlineCollection.cs
- ProbeMatches11.cs
- CompilationLock.cs
- DATA_BLOB.cs
- FontStretches.cs
- Main.cs
- ScriptResourceMapping.cs
- DataGridViewHitTestInfo.cs
- ParagraphVisual.cs
- Button.cs
- RegexTree.cs
- ClientOperation.cs
- HttpHeaderCollection.cs
- WebHeaderCollection.cs
- LOSFormatter.cs
- Property.cs
- LocalizedNameDescriptionPair.cs
- WebPartConnectVerb.cs
- NamespaceExpr.cs
- Geometry3D.cs
- FixedDocumentSequencePaginator.cs