Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- BaseUriHelper.cs
- XmlObjectSerializerReadContextComplex.cs
- SingleKeyFrameCollection.cs
- CryptographicAttribute.cs
- DetailsViewDeletedEventArgs.cs
- ClockGroup.cs
- DataGridTextBoxColumn.cs
- UIInitializationException.cs
- DrawingContextWalker.cs
- StorageEndPropertyMapping.cs
- OverflowException.cs
- FullTextBreakpoint.cs
- DefaultValueMapping.cs
- CompModSwitches.cs
- ParseHttpDate.cs
- XhtmlBasicPhoneCallAdapter.cs
- WebPartDeleteVerb.cs
- HttpModuleActionCollection.cs
- ToolboxItemAttribute.cs
- RectangleHotSpot.cs
- ObjectTag.cs
- DataChangedEventManager.cs
- GroupQuery.cs
- ControlEvent.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- InstanceDataCollection.cs
- PackageRelationshipCollection.cs
- CaseStatement.cs
- QueryCursorEventArgs.cs
- ProfessionalColors.cs
- Utils.cs
- FunctionDescription.cs
- SvcMapFile.cs
- BitmapEffectCollection.cs
- AdornerDecorator.cs
- FixedSOMTableCell.cs
- DataGridTemplateColumn.cs
- LinkedList.cs
- WSHttpTransportSecurityElement.cs
- MobileTextWriter.cs
- WebPartCollection.cs
- uribuilder.cs
- WindowsListViewGroupSubsetLink.cs
- PassportAuthenticationModule.cs
- BitmapMetadataEnumerator.cs
- Process.cs
- GeometryGroup.cs
- EventlogProvider.cs
- ThemeDirectoryCompiler.cs
- SendingRequestEventArgs.cs
- GeometryGroup.cs
- ReadOnlyTernaryTree.cs
- HttpProfileBase.cs
- assemblycache.cs
- Types.cs
- RequestTimeoutManager.cs
- TrackingProfileSerializer.cs
- SpellerHighlightLayer.cs
- TemplatedControlDesigner.cs
- PerfCounterSection.cs
- ConstraintEnumerator.cs
- ComplexPropertyEntry.cs
- EncoderParameter.cs
- ToolbarAUtomationPeer.cs
- Int32.cs
- ClientSettingsStore.cs
- ConnectionStringsSection.cs
- AddDataControlFieldDialog.cs
- MouseCaptureWithinProperty.cs
- GuidTagList.cs
- TableCellAutomationPeer.cs
- EncoderNLS.cs
- ListControlConvertEventArgs.cs
- DataGridViewImageCell.cs
- NativeMethods.cs
- OleDbEnumerator.cs
- HwndSourceParameters.cs
- Rotation3D.cs
- MetadataSource.cs
- IsolatedStorageFilePermission.cs
- EmptyEnumerator.cs
- TracingConnectionListener.cs
- CodeIterationStatement.cs
- Canvas.cs
- itemelement.cs
- Memoizer.cs
- PropertyStore.cs
- SpellerError.cs
- TextWriter.cs
- WindowsToolbarAsMenu.cs
- Operand.cs
- Label.cs
- SystemGatewayIPAddressInformation.cs
- KnownColorTable.cs
- ColorMap.cs
- CallbackWrapper.cs
- XmlAttribute.cs
- LocalizabilityAttribute.cs
- WebUtil.cs
- VectorCollectionConverter.cs