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
- GPRECT.cs
- WindowsGrip.cs
- ItemCheckEvent.cs
- StringValueSerializer.cs
- BitmapDecoder.cs
- CSharpCodeProvider.cs
- FormsAuthenticationEventArgs.cs
- RangeValueProviderWrapper.cs
- JsonObjectDataContract.cs
- EventLogger.cs
- CodeBlockBuilder.cs
- EncodingDataItem.cs
- TextWriterEngine.cs
- Attributes.cs
- ClusterRegistryConfigurationProvider.cs
- IxmlLineInfo.cs
- Deflater.cs
- TableAutomationPeer.cs
- Configuration.cs
- AssemblyGen.cs
- tooltip.cs
- FixedSOMPageConstructor.cs
- XmlSchemaSet.cs
- TrackPoint.cs
- DnsPermission.cs
- CompositeFontInfo.cs
- ObjectSecurity.cs
- DependencyPropertyKey.cs
- RTLAwareMessageBox.cs
- SkipQueryOptionExpression.cs
- ServiceModelConfigurationSectionCollection.cs
- StaticFileHandler.cs
- Sentence.cs
- SamlAuthenticationStatement.cs
- AddDataControlFieldDialog.cs
- XmlCompatibilityReader.cs
- ColorAnimation.cs
- WebPartTracker.cs
- Html32TextWriter.cs
- CopyAttributesAction.cs
- RtfNavigator.cs
- UnmanagedBitmapWrapper.cs
- XmlBoundElement.cs
- PropertyPathConverter.cs
- DbCommandTree.cs
- JapaneseCalendar.cs
- RootBrowserWindowAutomationPeer.cs
- TextChangedEventArgs.cs
- TrueReadOnlyCollection.cs
- hresults.cs
- SqlDataSourceView.cs
- ComboBox.cs
- CompilationUtil.cs
- DataGridViewDataConnection.cs
- ProjectionPlan.cs
- PriorityRange.cs
- CorrelationManager.cs
- GradientSpreadMethodValidation.cs
- NativeMethods.cs
- UnsafeNativeMethods.cs
- XmlSchemaAttribute.cs
- MULTI_QI.cs
- OutputCacheSettingsSection.cs
- WebPartDeleteVerb.cs
- Baml2006KnownTypes.cs
- UnauthorizedWebPart.cs
- SkipQueryOptionExpression.cs
- WinFormsSpinner.cs
- InterleavedZipPartStream.cs
- EntitySqlQueryBuilder.cs
- RuleSetDialog.cs
- OletxCommittableTransaction.cs
- SiteMapNodeItem.cs
- SchemaElementLookUpTableEnumerator.cs
- EventItfInfo.cs
- InputProcessorProfilesLoader.cs
- SmtpDigestAuthenticationModule.cs
- NameService.cs
- IndexedGlyphRun.cs
- BoolExpressionVisitors.cs
- DayRenderEvent.cs
- DeflateEmulationStream.cs
- SQlBooleanStorage.cs
- BuiltInExpr.cs
- DSASignatureDeformatter.cs
- ToolStripOverflow.cs
- InkSerializer.cs
- UnsafeNativeMethods.cs
- EventWaitHandleSecurity.cs
- TypedReference.cs
- safex509handles.cs
- MarkupExtensionReturnTypeAttribute.cs
- Compiler.cs
- EffectiveValueEntry.cs
- IApplicationTrustManager.cs
- UrlRoutingModule.cs
- HScrollBar.cs
- InputLanguageCollection.cs
- UriTemplateMatch.cs
- CategoryEditor.cs