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;
///
///
///
/// Provides data for the or
/// event.
///
///
[System.Runtime.InteropServices.ComVisible(true)]
public class KeyEventArgs : EventArgs {
///
///
/// 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;
///
///
///
/// Initializes a new
/// instance of the class.
///
///
public KeyEventArgs(Keys keyData) {
this.keyData = keyData;
}
///
///
///
/// Gets a value indicating whether the ALT key was pressed.
///
///
public virtual bool Alt {
get {
return (keyData & Keys.Alt) == Keys.Alt;
}
}
///
///
///
/// Gets a value indicating whether the CTRL key was pressed.
///
///
public bool Control {
get {
return (keyData & Keys.Control) == Keys.Control;
}
}
///
///
///
/// Gets or sets a value
/// indicating whether the event was handled.
///
///
//
public bool Handled {
get {
return handled;
}
set {
handled = value;
}
}
///
///
///
/// Gets the keyboard code for a or
/// event.
///
///
//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 value for a or
/// event.
///
///
//subhag : added the KeyValue as per the new requirements.
public int KeyValue {
get {
return (int)(keyData & Keys.KeyCode);
}
}
///
///
///
/// Gets the key data for a or
/// event.
///
///
public Keys KeyData {
get {
return keyData;
}
}
///
///
///
/// Gets the modifier flags for a or event.
/// This indicates which modifier keys (CTRL, SHIFT, and/or ALT) were pressed.
///
///
public Keys Modifiers {
get {
return keyData & Keys.Modifiers;
}
}
///
///
///
/// Gets
/// a value indicating whether the SHIFT key was pressed.
///
///
public virtual bool Shift {
get {
return (keyData & Keys.Shift) == Keys.Shift;
}
}
///
///
///
//
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
- RSAProtectedConfigurationProvider.cs
- CustomAttributeFormatException.cs
- SQLMoney.cs
- SqlReferenceCollection.cs
- CopyNamespacesAction.cs
- Queue.cs
- X509CertificateClaimSet.cs
- Converter.cs
- SequenceFullException.cs
- cache.cs
- ObjectStateFormatter.cs
- OpenTypeCommon.cs
- RC2CryptoServiceProvider.cs
- SqlUtil.cs
- ProviderUtil.cs
- MonthCalendarDesigner.cs
- BaseCollection.cs
- dtdvalidator.cs
- Page.cs
- iisPickupDirectory.cs
- CodeTypeConstructor.cs
- CatalogZoneAutoFormat.cs
- CachedFontFamily.cs
- DataSourceControlBuilder.cs
- FragmentQuery.cs
- HttpFileCollectionWrapper.cs
- KeyboardNavigation.cs
- Int16Storage.cs
- BitmapEffectDrawing.cs
- MaskedTextBoxTextEditor.cs
- SQLInt32.cs
- BlurBitmapEffect.cs
- UnsafeNativeMethodsTablet.cs
- HtmlInputHidden.cs
- SafeNativeMethods.cs
- PropertyItem.cs
- SegmentTree.cs
- ListItemCollection.cs
- DisposableCollectionWrapper.cs
- ProviderConnectionPointCollection.cs
- Bold.cs
- Floater.cs
- KeyFrames.cs
- AlphabetConverter.cs
- BooleanSwitch.cs
- BitmapEffectGeneralTransform.cs
- CompositeDispatchFormatter.cs
- PointAnimationBase.cs
- XmlLanguage.cs
- Models.cs
- DirectoryNotFoundException.cs
- _AutoWebProxyScriptWrapper.cs
- ArithmeticException.cs
- RequestStatusBarUpdateEventArgs.cs
- _FixedSizeReader.cs
- WebPartTracker.cs
- TextViewSelectionProcessor.cs
- Ipv6Element.cs
- WebDescriptionAttribute.cs
- WebControlParameterProxy.cs
- InteropAutomationProvider.cs
- StorageMappingItemCollection.cs
- SerializationInfo.cs
- TableLayoutStyle.cs
- MethodImplAttribute.cs
- SerializationException.cs
- Section.cs
- ConnectionStringsSection.cs
- FileSystemInfo.cs
- ScrollItemPatternIdentifiers.cs
- TextSchema.cs
- SqlParameterCollection.cs
- ByteStreamGeometryContext.cs
- RegexStringValidatorAttribute.cs
- MenuItemStyleCollection.cs
- ExecutionTracker.cs
- Encoding.cs
- StrokeNodeOperations.cs
- _AuthenticationState.cs
- RelationshipDetailsRow.cs
- ColumnReorderedEventArgs.cs
- StateManager.cs
- InvalidOperationException.cs
- FileCodeGroup.cs
- SolidColorBrush.cs
- ReadOnlyHierarchicalDataSource.cs
- CustomMenuItemCollection.cs
- ContainerFilterService.cs
- UpdatePanelTriggerCollection.cs
- VisualStates.cs
- loginstatus.cs
- VisualBrush.cs
- Rect3D.cs
- InstancePersistenceEvent.cs
- FontEmbeddingManager.cs
- SoapTypeAttribute.cs
- CollectionChangedEventManager.cs
- FrameworkTextComposition.cs
- ReflectionUtil.cs
- Binding.cs