Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / RawTextInputReport.cs / 1305600 / 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
- XmlRawWriterWrapper.cs
- MetaTableHelper.cs
- CompiledQueryCacheKey.cs
- Style.cs
- ZipIOBlockManager.cs
- PointCollectionConverter.cs
- EntityKey.cs
- VisemeEventArgs.cs
- VoiceInfo.cs
- RegexBoyerMoore.cs
- CompleteWizardStep.cs
- RelationshipSet.cs
- BitmapEncoder.cs
- ExtendedTransformFactory.cs
- SeparatorAutomationPeer.cs
- DataGridViewComboBoxColumnDesigner.cs
- DesignerMetadata.cs
- WmlPageAdapter.cs
- MD5CryptoServiceProvider.cs
- DoubleKeyFrameCollection.cs
- RoleServiceManager.cs
- EnumerableValidator.cs
- CompositeDataBoundControl.cs
- MouseCaptureWithinProperty.cs
- XmlDomTextWriter.cs
- SessionEndingEventArgs.cs
- TableSectionStyle.cs
- FixUp.cs
- SystemThemeKey.cs
- FontSourceCollection.cs
- DependentTransaction.cs
- ItemDragEvent.cs
- XmlDataLoader.cs
- XmlSchemaSimpleContent.cs
- FileAuthorizationModule.cs
- Throw.cs
- FrameworkContextData.cs
- WebEvents.cs
- TrustLevel.cs
- ConsoleCancelEventArgs.cs
- DoubleStorage.cs
- PageSettings.cs
- _NtlmClient.cs
- LinkedResourceCollection.cs
- ReadingWritingEntityEventArgs.cs
- SiteMapHierarchicalDataSourceView.cs
- FrugalMap.cs
- BooleanAnimationBase.cs
- HtmlImageAdapter.cs
- FolderBrowserDialog.cs
- DataControlPagerLinkButton.cs
- GridViewCommandEventArgs.cs
- PipelineDeploymentState.cs
- MenuCommands.cs
- OperationResponse.cs
- SQLResource.cs
- SrgsOneOf.cs
- SystemTcpConnection.cs
- WindowsMenu.cs
- HMACMD5.cs
- EntityDataSourceReferenceGroup.cs
- DataGridItem.cs
- GridViewUpdatedEventArgs.cs
- CompensateDesigner.cs
- DataControlCommands.cs
- ObjectHelper.cs
- BuildManagerHost.cs
- KeyedPriorityQueue.cs
- VisualTarget.cs
- WebPartVerb.cs
- ValidatorCollection.cs
- WorkflowDispatchContext.cs
- BitmapEffectInputConnector.cs
- TextServicesHost.cs
- ExecutionProperties.cs
- ResourceAttributes.cs
- TemplateComponentConnector.cs
- StrictModeSecurityHeaderElementInferenceEngine.cs
- Size.cs
- RankException.cs
- Clock.cs
- ConfigurationException.cs
- HtmlWindowCollection.cs
- Run.cs
- Int32Animation.cs
- HierarchicalDataSourceIDConverter.cs
- ScaleTransform.cs
- InstanceView.cs
- NamedObject.cs
- OletxTransactionHeader.cs
- HandlerBase.cs
- WebRequestModulesSection.cs
- EntityProviderFactory.cs
- WebPageTraceListener.cs
- CollectionChangeEventArgs.cs
- HeaderUtility.cs
- COM2Properties.cs
- Image.cs
- COM2TypeInfoProcessor.cs
- TreeViewDesigner.cs