Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Input / TextCompositionEventArgs.cs / 1 / TextCompositionEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: TextCompositionEventArgs class // // History: // 11/19/2003 : yutakas created // //--------------------------------------------------------------------------- using System; namespace System.Windows.Input { ////// The TextCompositionEventArgs class contains a text representation of /// input. /// public class TextCompositionEventArgs : InputEventArgs { ////// Constructs an instance of the TextInputEventArgs class. /// /// /// The input device to associate with this event. /// /// /// The TextComposition object that contains the composition text and the composition state. /// public TextCompositionEventArgs(InputDevice inputDevice, TextComposition composition) : base(inputDevice, Environment.TickCount) { if (composition == null) { throw new ArgumentNullException("composition"); } _composition = composition; } ////// The text composition that was provided. /// ///public TextComposition TextComposition { get {return _composition;} } /// /// The result text that was provided as input. /// ///public string Text { get {return _composition.Text;} } /// /// The result system text that was provided as input. /// ///public string SystemText { get {return _composition.SystemText;} } /// /// The result control text that was provided as input. /// ///public string ControlText { get {return _composition.ControlText;} } /// /// The mechanism used to call the type-specific handler on the /// target. /// /// /// The generic handler to call in a type-specific way. /// /// /// The target to call the handler on. /// ///protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { TextCompositionEventHandler handler = (TextCompositionEventHandler) genericHandler; handler(genericTarget, this); } // The target TextComposition object of this event. private TextComposition _composition; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // // Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: TextCompositionEventArgs class // // History: // 11/19/2003 : yutakas created // //--------------------------------------------------------------------------- using System; namespace System.Windows.Input { ////// The TextCompositionEventArgs class contains a text representation of /// input. /// public class TextCompositionEventArgs : InputEventArgs { ////// Constructs an instance of the TextInputEventArgs class. /// /// /// The input device to associate with this event. /// /// /// The TextComposition object that contains the composition text and the composition state. /// public TextCompositionEventArgs(InputDevice inputDevice, TextComposition composition) : base(inputDevice, Environment.TickCount) { if (composition == null) { throw new ArgumentNullException("composition"); } _composition = composition; } ////// The text composition that was provided. /// ///public TextComposition TextComposition { get {return _composition;} } /// /// The result text that was provided as input. /// ///public string Text { get {return _composition.Text;} } /// /// The result system text that was provided as input. /// ///public string SystemText { get {return _composition.SystemText;} } /// /// The result control text that was provided as input. /// ///public string ControlText { get {return _composition.ControlText;} } /// /// The mechanism used to call the type-specific handler on the /// target. /// /// /// The generic handler to call in a type-specific way. /// /// /// The target to call the handler on. /// ///protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { TextCompositionEventHandler handler = (TextCompositionEventHandler) genericHandler; handler(genericTarget, this); } // The target TextComposition object of this event. private TextComposition _composition; } } // 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
- FrameworkRichTextComposition.cs
- DataGridViewSelectedColumnCollection.cs
- ToolStripItemCollection.cs
- AmbientLight.cs
- URIFormatException.cs
- ExecutionEngineException.cs
- DataListCommandEventArgs.cs
- WindowsAuthenticationEventArgs.cs
- FromRequest.cs
- AppDomainResourcePerfCounters.cs
- UshortList2.cs
- TextContainer.cs
- WindowsSlider.cs
- WindowsHyperlink.cs
- XmlSerializer.cs
- BaseTreeIterator.cs
- AuthenticationManager.cs
- DynamicDataRoute.cs
- ApplicationServiceManager.cs
- CatalogPart.cs
- PrefixHandle.cs
- WriterOutput.cs
- ExpressionBuilder.cs
- LinqDataSourceContextEventArgs.cs
- SecurityTokenSerializer.cs
- OleAutBinder.cs
- HandleTable.cs
- InvokePattern.cs
- PersonalizableTypeEntry.cs
- SharedDp.cs
- OdbcReferenceCollection.cs
- AuthenticateEventArgs.cs
- CqlParserHelpers.cs
- SafeBitVector32.cs
- ArrayHelper.cs
- StatusBarDrawItemEvent.cs
- EntityDataReader.cs
- SubMenuStyle.cs
- DeobfuscatingStream.cs
- ExternalFile.cs
- ChangeNode.cs
- PrintSystemException.cs
- SQLDoubleStorage.cs
- UpdatePanelControlTrigger.cs
- MultiBinding.cs
- Point4D.cs
- DataSourceControl.cs
- MultiView.cs
- XmlBufferReader.cs
- DataSourceControl.cs
- HttpCookiesSection.cs
- ToolStripSplitStackLayout.cs
- QueryIntervalOp.cs
- MessageQueueCriteria.cs
- EventRouteFactory.cs
- BitArray.cs
- ModelUIElement3D.cs
- ConnectionPointConverter.cs
- TranslateTransform.cs
- OleAutBinder.cs
- RootProfilePropertySettingsCollection.cs
- ProviderIncompatibleException.cs
- CompensationParticipant.cs
- JsonDeserializer.cs
- HttpRequest.cs
- MouseCaptureWithinProperty.cs
- AdornerLayer.cs
- IsolatedStorage.cs
- BlobPersonalizationState.cs
- ContentFileHelper.cs
- OleDbPropertySetGuid.cs
- _LazyAsyncResult.cs
- RegexTree.cs
- XmlEventCache.cs
- ZipIOCentralDirectoryBlock.cs
- ItemsPanelTemplate.cs
- XmlNodeChangedEventManager.cs
- InkPresenter.cs
- Literal.cs
- SiteMapPath.cs
- CombinedHttpChannel.cs
- messageonlyhwndwrapper.cs
- StateWorkerRequest.cs
- ServicePointManagerElement.cs
- RegexInterpreter.cs
- OpCopier.cs
- DateTimeParse.cs
- DataService.cs
- ListViewGroupItemCollection.cs
- WindowsAuthenticationModule.cs
- SafeCryptoHandles.cs
- BmpBitmapEncoder.cs
- ProcessRequestArgs.cs
- UIElement3D.cs
- TypeDescriptor.cs
- Message.cs
- CommandCollectionEditor.cs
- FixedTextBuilder.cs
- SqlUDTStorage.cs
- ColorPalette.cs