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
- DataFormats.cs
- RangeBase.cs
- BitConverter.cs
- ImportStoreException.cs
- AnonymousIdentificationModule.cs
- HttpModulesSection.cs
- ExecutedRoutedEventArgs.cs
- SecurityContext.cs
- BitmapEffectDrawingContent.cs
- ModelItemKeyValuePair.cs
- ComponentChangedEvent.cs
- FrameworkElementFactory.cs
- ProcessProtocolHandler.cs
- TransactionsSectionGroup.cs
- _TransmitFileOverlappedAsyncResult.cs
- FilterableData.cs
- AnimationException.cs
- FunctionImportElement.cs
- TextServicesCompartmentContext.cs
- DataControlCommands.cs
- JavaScriptString.cs
- StorageComplexPropertyMapping.cs
- MatrixTransform3D.cs
- xml.cs
- Clause.cs
- CacheAxisQuery.cs
- UnmanagedMemoryStreamWrapper.cs
- InputEventArgs.cs
- TabPanel.cs
- TextEditorTables.cs
- SizeValueSerializer.cs
- RoutingUtilities.cs
- TableRowCollection.cs
- ResourceCategoryAttribute.cs
- BitmapEffectInputData.cs
- CategoryValueConverter.cs
- QueryStringConverter.cs
- XmlBinaryWriter.cs
- ComboBox.cs
- XhtmlMobileTextWriter.cs
- NameTable.cs
- EntitySetDataBindingList.cs
- Rule.cs
- WaitingCursor.cs
- NullableDecimalAverageAggregationOperator.cs
- RadioButtonList.cs
- XmlDataSource.cs
- ServiceChannelProxy.cs
- SamlAdvice.cs
- ActivityDesignerAccessibleObject.cs
- FutureFactory.cs
- Lasso.cs
- EntityDataSourceDataSelectionPanel.cs
- EntityCommandCompilationException.cs
- EndpointDiscoveryBehavior.cs
- FixedSOMLineRanges.cs
- ColorTranslator.cs
- Helper.cs
- TTSEngineTypes.cs
- AuthenticationService.cs
- RequiredFieldValidator.cs
- ReadWriteObjectLock.cs
- DoubleLinkListEnumerator.cs
- QilStrConcat.cs
- WebPartCollection.cs
- FrugalList.cs
- ObjectDataSourceSelectingEventArgs.cs
- TextEditor.cs
- SplitterEvent.cs
- Hashtable.cs
- AttachedPropertyInfo.cs
- EventLog.cs
- DataGridViewCellCollection.cs
- DefaultHttpHandler.cs
- ScriptMethodAttribute.cs
- SafeCryptHandles.cs
- SafeProcessHandle.cs
- EventLogLink.cs
- PassportPrincipal.cs
- GlyphingCache.cs
- TemplateEditingService.cs
- AppendHelper.cs
- ToolBarOverflowPanel.cs
- SQLDouble.cs
- FrameAutomationPeer.cs
- ADMembershipUser.cs
- WinEventWrap.cs
- SizeAnimationClockResource.cs
- FtpRequestCacheValidator.cs
- CodeCommentStatement.cs
- MediaPlayerState.cs
- DesignerOptionService.cs
- BamlTreeNode.cs
- CustomPopupPlacement.cs
- MouseCaptureWithinProperty.cs
- XmlCountingReader.cs
- SqlExpander.cs
- _LocalDataStore.cs
- WeakEventManager.cs
- IPCCacheManager.cs