Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Input / RawTextInputReport.cs / 1 / RawTextInputReport.cs
using System; using System.Windows; namespace System.Windows.Input { ////// The RawTextInputReport class encapsulates the raw text input /// provided. /// ////// It is important to note that the InputReport class only contains /// blittable types. This is required so that the report can be /// marshalled across application domains. /// internal class RawTextInputReport : InputReport { ////// Constructs ad instance of the RawKeyboardInputReport class. /// /// /// The input source that provided this input. /// /// /// The mode in which the input is being provided. /// /// /// The time when the input occured. /// /// /// True if the char code is a dead char. /// /// /// True if the char code is a system char. /// /// /// True if the char code is a control char. /// /// /// The character code. /// public RawTextInputReport( PresentationSource inputSource, InputMode mode, int timestamp, bool isDeadCharacter, bool isSystemCharacter, bool isControlCharacter, char characterCode) : base(inputSource, InputType.Text, mode, timestamp) { _isDeadCharacter = isDeadCharacter; _isSystemCharacter = isSystemCharacter; _isControlCharacter = isControlCharacter; _characterCode = characterCode; } ////// Read-only access to the state of dead character /// public bool IsDeadCharacter {get {return _isDeadCharacter;}} ////// Read-only access to the state of system character /// public bool IsSystemCharacter {get {return _isSystemCharacter;}} ////// Read-only access to the state of control character /// public bool IsControlCharacter {get {return _isControlCharacter;}} ////// Read-only access to the character code that was reported. /// public char CharacterCode {get {return _characterCode;}} private readonly bool _isDeadCharacter; private readonly bool _isSystemCharacter; private readonly bool _isControlCharacter; private readonly char _characterCode; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Windows; namespace System.Windows.Input { ////// The RawTextInputReport class encapsulates the raw text input /// provided. /// ////// It is important to note that the InputReport class only contains /// blittable types. This is required so that the report can be /// marshalled across application domains. /// internal class RawTextInputReport : InputReport { ////// Constructs ad instance of the RawKeyboardInputReport class. /// /// /// The input source that provided this input. /// /// /// The mode in which the input is being provided. /// /// /// The time when the input occured. /// /// /// True if the char code is a dead char. /// /// /// True if the char code is a system char. /// /// /// True if the char code is a control char. /// /// /// The character code. /// public RawTextInputReport( PresentationSource inputSource, InputMode mode, int timestamp, bool isDeadCharacter, bool isSystemCharacter, bool isControlCharacter, char characterCode) : base(inputSource, InputType.Text, mode, timestamp) { _isDeadCharacter = isDeadCharacter; _isSystemCharacter = isSystemCharacter; _isControlCharacter = isControlCharacter; _characterCode = characterCode; } ////// Read-only access to the state of dead character /// public bool IsDeadCharacter {get {return _isDeadCharacter;}} ////// Read-only access to the state of system character /// public bool IsSystemCharacter {get {return _isSystemCharacter;}} ////// Read-only access to the state of control character /// public bool IsControlCharacter {get {return _isControlCharacter;}} ////// Read-only access to the character code that was reported. /// public char CharacterCode {get {return _characterCode;}} private readonly bool _isDeadCharacter; private readonly bool _isSystemCharacter; private readonly bool _isControlCharacter; private readonly char _characterCode; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SevenBitStream.cs
- WebPartExportVerb.cs
- TextSchema.cs
- Authorization.cs
- NetworkInformationException.cs
- RouteParametersHelper.cs
- ListViewInsertEventArgs.cs
- HashCodeCombiner.cs
- OdbcConnectionOpen.cs
- WebPartUserCapability.cs
- BaseParser.cs
- CodeParameterDeclarationExpressionCollection.cs
- ResizeGrip.cs
- SafeLibraryHandle.cs
- DescendantQuery.cs
- XmlSerializationReader.cs
- Selection.cs
- RepeaterCommandEventArgs.cs
- FrameworkElement.cs
- DataContractAttribute.cs
- Vector3DIndependentAnimationStorage.cs
- SqlTypeSystemProvider.cs
- _NegoStream.cs
- QuaternionValueSerializer.cs
- Knowncolors.cs
- DocumentStream.cs
- PolicyValidationException.cs
- XmlSortKey.cs
- DataFieldConverter.cs
- MatrixKeyFrameCollection.cs
- TypedTableGenerator.cs
- TextSerializer.cs
- RowSpanVector.cs
- ComponentResourceKeyConverter.cs
- SqlMethodAttribute.cs
- ShortcutKeysEditor.cs
- InkSerializer.cs
- InstanceNormalEvent.cs
- ResumeStoryboard.cs
- SqlUtils.cs
- DayRenderEvent.cs
- ControlBuilder.cs
- XmlSchemaFacet.cs
- SqlException.cs
- PropertyEmitter.cs
- ItemMap.cs
- DiagnosticsElement.cs
- ProfilePropertyMetadata.cs
- EntityWithChangeTrackerStrategy.cs
- SupportingTokenParameters.cs
- WebConfigurationHost.cs
- ParserContext.cs
- SQLInt16Storage.cs
- RenamedEventArgs.cs
- SqlUDTStorage.cs
- ResXBuildProvider.cs
- PropertyKey.cs
- DbConvert.cs
- CompositeControlDesigner.cs
- XsltCompileContext.cs
- ResetableIterator.cs
- ExtensionWindow.cs
- InitializeCorrelation.cs
- LoginAutoFormat.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- PrivilegeNotHeldException.cs
- AspNetHostingPermission.cs
- DocumentPageViewAutomationPeer.cs
- Duration.cs
- NetSectionGroup.cs
- FormatException.cs
- ValidatorCollection.cs
- PageThemeParser.cs
- FormView.cs
- RequestContextBase.cs
- FamilyMap.cs
- Dictionary.cs
- ClientRolePrincipal.cs
- NetMsmqSecurity.cs
- ValidationEventArgs.cs
- RoleServiceManager.cs
- Visual3DCollection.cs
- DataSetUtil.cs
- RegisteredDisposeScript.cs
- AssemblyHash.cs
- WpfSharedBamlSchemaContext.cs
- ZipIOBlockManager.cs
- CodeRemoveEventStatement.cs
- Model3DCollection.cs
- Stream.cs
- ConstantCheck.cs
- ConfigXmlAttribute.cs
- ToolStripSettings.cs
- SizeConverter.cs
- Track.cs
- DbConnectionPoolGroup.cs
- XmlMemberMapping.cs
- NumberSubstitution.cs
- DiagnosticTrace.cs
- DataGridView.cs