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
- SendMailErrorEventArgs.cs
- CompiledELinqQueryState.cs
- ObjectIDGenerator.cs
- versioninfo.cs
- LongAverageAggregationOperator.cs
- StreamReader.cs
- TogglePattern.cs
- VisualTarget.cs
- InternalsVisibleToAttribute.cs
- PolicyFactory.cs
- wgx_commands.cs
- XPathPatternBuilder.cs
- RuntimeDelegateArgument.cs
- KnownAssembliesSet.cs
- SessionParameter.cs
- IsolatedStorageSecurityState.cs
- XmlAttributeHolder.cs
- Pair.cs
- ToolStripDropDown.cs
- ObjectStateManager.cs
- FileStream.cs
- XmlSchemaGroupRef.cs
- IDispatchConstantAttribute.cs
- Error.cs
- MtomMessageEncoder.cs
- TableStyle.cs
- BindingCompleteEventArgs.cs
- DefaultHttpHandler.cs
- AddInPipelineAttributes.cs
- BorderGapMaskConverter.cs
- SessionPageStateSection.cs
- TabControl.cs
- CorrelationInitializer.cs
- ClientUriBehavior.cs
- XhtmlBasicLiteralTextAdapter.cs
- SimpleMailWebEventProvider.cs
- Viewport2DVisual3D.cs
- BuildProviderUtils.cs
- NameScopePropertyAttribute.cs
- Inline.cs
- UnmanagedHandle.cs
- TrustLevelCollection.cs
- DocumentAutomationPeer.cs
- ObjectTag.cs
- MouseOverProperty.cs
- ScrollItemPatternIdentifiers.cs
- CallTemplateAction.cs
- StorageEndPropertyMapping.cs
- TabletDeviceInfo.cs
- XsltException.cs
- TouchFrameEventArgs.cs
- XmlMemberMapping.cs
- WmlLabelAdapter.cs
- ControlsConfig.cs
- ServiceDiscoveryBehavior.cs
- TypePropertyEditor.cs
- DocumentCollection.cs
- PerformanceCountersElement.cs
- CompilationSection.cs
- TextElementEnumerator.cs
- StorageEntitySetMapping.cs
- AssemblyBuilder.cs
- BitmapPalette.cs
- counter.cs
- BinaryObjectInfo.cs
- DesignerActionPanel.cs
- GPPOINTF.cs
- ComponentResourceKey.cs
- HttpPostedFile.cs
- UniformGrid.cs
- Brushes.cs
- BitmapEffectGeneralTransform.cs
- GridViewItemAutomationPeer.cs
- ClientScriptItemCollection.cs
- RegexBoyerMoore.cs
- PrivateFontCollection.cs
- AnchorEditor.cs
- CriticalHandle.cs
- ConnectionProviderAttribute.cs
- SmiGettersStream.cs
- XmlWriter.cs
- ScriptRef.cs
- DefaultAssemblyResolver.cs
- OperationAbortedException.cs
- Panel.cs
- UnsupportedPolicyOptionsException.cs
- RoutedEventConverter.cs
- ChangeDirector.cs
- XmlSchemaAttribute.cs
- NativeMethods.cs
- Margins.cs
- MimeTextImporter.cs
- DbCommandDefinition.cs
- ImageListStreamer.cs
- MappingModelBuildProvider.cs
- Filter.cs
- BrowserCapabilitiesCodeGenerator.cs
- XmlCompatibilityReader.cs
- _AutoWebProxyScriptWrapper.cs
- LinkedList.cs