Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / PreviewKeyDownEventArgs.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- TextElementCollectionHelper.cs
- SymmetricSecurityProtocol.cs
- TemplateBindingExpression.cs
- TextTreeTextBlock.cs
- DbException.cs
- ToolBarButton.cs
- ExpressionsCollectionEditor.cs
- CacheSection.cs
- HeaderedItemsControl.cs
- SymbolTable.cs
- ErrorFormatterPage.cs
- XmlSchemaDocumentation.cs
- DetailsViewModeEventArgs.cs
- XmlSchemaAttributeGroupRef.cs
- EmptyEnumerator.cs
- Restrictions.cs
- InfoCardRSACryptoProvider.cs
- LinearQuaternionKeyFrame.cs
- TextTreeFixupNode.cs
- RawStylusInput.cs
- TimeSpanValidator.cs
- VisualTreeUtils.cs
- DebugView.cs
- ModelTreeEnumerator.cs
- GeneratedContractType.cs
- Monitor.cs
- DataGridViewCellStateChangedEventArgs.cs
- TrustSection.cs
- DataFormats.cs
- WebControl.cs
- DataSourceGroupCollection.cs
- PropertyGridCommands.cs
- ToolStripLocationCancelEventArgs.cs
- XmlSchemaSubstitutionGroup.cs
- SiteMapSection.cs
- TitleStyle.cs
- ScriptResourceHandler.cs
- SchemaCollectionCompiler.cs
- ExtensionFile.cs
- SqlDataSourceSelectingEventArgs.cs
- BlurEffect.cs
- Validator.cs
- ParseChildrenAsPropertiesAttribute.cs
- PropertyTabAttribute.cs
- ArrangedElement.cs
- SqlCommand.cs
- SqlConnection.cs
- XmlSchemaChoice.cs
- WebEvents.cs
- MessageBox.cs
- TextTreeUndo.cs
- ControlAdapter.cs
- EventLogPermission.cs
- FixedTextPointer.cs
- HttpPostedFile.cs
- ReadWriteObjectLock.cs
- MetadataPropertyAttribute.cs
- SessionPageStatePersister.cs
- DataGridViewCheckBoxColumn.cs
- HttpServerVarsCollection.cs
- IISUnsafeMethods.cs
- InternalBufferOverflowException.cs
- MsmqUri.cs
- PageContentAsyncResult.cs
- EditCommandColumn.cs
- ConfigurationHelpers.cs
- RsaKeyIdentifierClause.cs
- TransformGroup.cs
- TextFindEngine.cs
- RegexCapture.cs
- XmlUTF8TextWriter.cs
- ZoneMembershipCondition.cs
- RequestContext.cs
- SqlFileStream.cs
- HttpGetServerProtocol.cs
- wgx_exports.cs
- LoginDesigner.cs
- TypeExtension.cs
- IdentityNotMappedException.cs
- Point3DCollection.cs
- PriorityBindingExpression.cs
- TextRunTypographyProperties.cs
- DataGridViewRowEventArgs.cs
- UndoManager.cs
- WebPartUtil.cs
- ILGen.cs
- MemberRelationshipService.cs
- SerializableTypeCodeDomSerializer.cs
- MatrixAnimationUsingPath.cs
- MenuRendererStandards.cs
- SqlBulkCopyColumnMapping.cs
- HebrewCalendar.cs
- DocumentViewerBase.cs
- CheckPair.cs
- SequenceNumber.cs
- handlecollector.cs
- ControlPropertyNameConverter.cs
- TokenBasedSet.cs
- TargetControlTypeAttribute.cs
- DoubleConverter.cs