Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Input / TextCompositionEventArgs.cs / 1 / TextCompositionEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: TextCompositionEventArgs class // // History: // 11/19/2003 : [....] 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
- TypeCacheManager.cs
- TogglePattern.cs
- CopyAttributesAction.cs
- XmlElementCollection.cs
- XmlPropertyBag.cs
- ByteFacetDescriptionElement.cs
- DbSetClause.cs
- WindowsGraphics2.cs
- EncryptedReference.cs
- JournalEntry.cs
- FontCacheUtil.cs
- RSAPKCS1SignatureDeformatter.cs
- CLRBindingWorker.cs
- VirtualPath.cs
- Currency.cs
- PropertyChange.cs
- GeneralTransform3D.cs
- PathData.cs
- TextEvent.cs
- SqlTriggerContext.cs
- XmlSerializerAssemblyAttribute.cs
- FrameAutomationPeer.cs
- SimpleTextLine.cs
- ToolBarButton.cs
- SymbolMethod.cs
- ServiceDurableInstanceContextProvider.cs
- OpenFileDialog.cs
- Operators.cs
- Dump.cs
- DescriptionAttribute.cs
- ProcessThread.cs
- WMIGenerator.cs
- SoapHttpTransportImporter.cs
- GeometryCollection.cs
- InvalidPipelineStoreException.cs
- SqlCommandSet.cs
- EnumBuilder.cs
- TextBounds.cs
- safex509handles.cs
- WindowProviderWrapper.cs
- InstallHelper.cs
- ProfileGroupSettings.cs
- SqlUserDefinedAggregateAttribute.cs
- KeyNotFoundException.cs
- ManifestSignedXml.cs
- CompositeFontParser.cs
- EntityContainerEmitter.cs
- DataSourceSelectArguments.cs
- LicenseProviderAttribute.cs
- SoapMessage.cs
- SymbolType.cs
- MatrixAnimationUsingPath.cs
- Calendar.cs
- SQLDecimalStorage.cs
- EmptyCollection.cs
- TypeGeneratedEventArgs.cs
- WindowsTooltip.cs
- UnionExpr.cs
- SafeMarshalContext.cs
- RemoteCryptoRsaServiceProvider.cs
- RuntimeComponentFilter.cs
- XmlSchemaException.cs
- OleStrCAMarshaler.cs
- ResourceReader.cs
- SolidBrush.cs
- DesignerMetadata.cs
- View.cs
- MetaData.cs
- SchemaAttDef.cs
- MetadataCacheItem.cs
- Stroke2.cs
- WebScriptEnablingBehavior.cs
- TextWriterEngine.cs
- PersonalizableTypeEntry.cs
- DataTransferEventArgs.cs
- XmlBaseWriter.cs
- EmptyControlCollection.cs
- Vector3DIndependentAnimationStorage.cs
- WCFModelStrings.Designer.cs
- ZipIOExtraField.cs
- UnknownWrapper.cs
- Identity.cs
- ITreeGenerator.cs
- RuntimeCompatibilityAttribute.cs
- SatelliteContractVersionAttribute.cs
- UpdatePanelTriggerCollection.cs
- COAUTHIDENTITY.cs
- ZipArchive.cs
- XmlAnyElementAttribute.cs
- ColorDialog.cs
- EventHandlersStore.cs
- FragmentNavigationEventArgs.cs
- XmlSchemaSimpleTypeRestriction.cs
- DuplicateWaitObjectException.cs
- ServiceDescriptionSerializer.cs
- DocumentPaginator.cs
- HandleValueEditor.cs
- DependencySource.cs
- DoubleCollectionValueSerializer.cs
- Helpers.cs