Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / KeyPressEvent.cs / 1 / KeyPressEvent.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; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class KeyPressEventArgs : EventArgs { ////// Provides data for the ////// event. /// /// /// Contains the character of the current KeyPress event. /// private char keyChar; ////// /// 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; ////// /// public KeyPressEventArgs(char keyChar) { this.keyChar = keyChar; } ////// Initializes a new /// instance of the ////// class. /// /// /// public char KeyChar { get { return keyChar; } set { keyChar = value; } } ////// Gets the character corresponding to the key /// pressed. /// ////// /// public bool Handled { get { return handled; } set { handled = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets a value indicating whether the ////// event was handled. /// // 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; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class KeyPressEventArgs : EventArgs { ////// Provides data for the ////// event. /// /// /// Contains the character of the current KeyPress event. /// private char keyChar; ////// /// 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; ////// /// public KeyPressEventArgs(char keyChar) { this.keyChar = keyChar; } ////// Initializes a new /// instance of the ////// class. /// /// /// public char KeyChar { get { return keyChar; } set { keyChar = value; } } ////// Gets the character corresponding to the key /// pressed. /// ////// /// public bool Handled { get { return handled; } set { handled = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets a value indicating whether the ////// event was handled. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridViewLayoutData.cs
- TransformConverter.cs
- ColorMap.cs
- TreeNodeStyleCollection.cs
- Flowchart.cs
- WebContext.cs
- DbParameterCollectionHelper.cs
- JumpPath.cs
- MimeParameter.cs
- Transform.cs
- NullExtension.cs
- TextTreeFixupNode.cs
- LocationFactory.cs
- SourceItem.cs
- DataServiceEntityAttribute.cs
- EventLogTraceListener.cs
- Propagator.JoinPropagator.cs
- ImageSourceConverter.cs
- StackOverflowException.cs
- LayoutEngine.cs
- OutputWindow.cs
- GreenMethods.cs
- SourceFileInfo.cs
- HttpSocketManager.cs
- DefaultAssemblyResolver.cs
- ConnectionManagementElementCollection.cs
- LayoutEditorPart.cs
- ProtocolElement.cs
- PropertyGridView.cs
- ConnectionPointCookie.cs
- ExtenderHelpers.cs
- RenderData.cs
- TCEAdapterGenerator.cs
- ModelServiceImpl.cs
- Vector3D.cs
- QilInvokeEarlyBound.cs
- UriTemplateVariablePathSegment.cs
- DataGridViewComboBoxCell.cs
- CellTreeSimplifier.cs
- MetadataArtifactLoaderFile.cs
- XPathDocumentBuilder.cs
- AssemblyBuilder.cs
- ProgressBarHighlightConverter.cs
- PeerCollaboration.cs
- AnonymousIdentificationSection.cs
- followingsibling.cs
- OpCellTreeNode.cs
- MatchingStyle.cs
- HotCommands.cs
- RuleConditionDialog.cs
- _UriTypeConverter.cs
- DataGridCellInfo.cs
- ParagraphVisual.cs
- SafeSecurityHandles.cs
- RegistrationServices.cs
- XslTransform.cs
- SqlCommandSet.cs
- WebHttpSecurity.cs
- MarkupCompilePass2.cs
- BuildProviderUtils.cs
- SessionState.cs
- GridLength.cs
- CodeAttachEventStatement.cs
- TTSEvent.cs
- OracleTimeSpan.cs
- HtmlAnchor.cs
- XmlArrayAttribute.cs
- EasingKeyFrames.cs
- ValidatorCollection.cs
- ZoomPercentageConverter.cs
- webproxy.cs
- COM2PropertyBuilderUITypeEditor.cs
- CreatingCookieEventArgs.cs
- TextAction.cs
- Label.cs
- ValidatorCompatibilityHelper.cs
- DetailsViewRowCollection.cs
- StyleCollection.cs
- DynamicActivityTypeDescriptor.cs
- DataFormats.cs
- XmlText.cs
- DataServiceKeyAttribute.cs
- CompositeActivityValidator.cs
- EventRecordWrittenEventArgs.cs
- PEFileReader.cs
- RootProfilePropertySettingsCollection.cs
- CssStyleCollection.cs
- PartialCachingControl.cs
- WebServiceParameterData.cs
- DataRecord.cs
- AnimatedTypeHelpers.cs
- JsonReaderDelegator.cs
- ScrollProperties.cs
- DataGridSortCommandEventArgs.cs
- RegisteredDisposeScript.cs
- MetadataPropertyAttribute.cs
- CFStream.cs
- PolyLineSegment.cs
- SecurityHelper.cs
- HttpDigestClientCredential.cs