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
- BigIntegerStorage.cs
- HtmlSelect.cs
- RightsManagementEncryptionTransform.cs
- TagMapCollection.cs
- TextEffectResolver.cs
- Brush.cs
- RtfControls.cs
- RequiredFieldValidator.cs
- AnnouncementSendsAsyncResult.cs
- ToolBarOverflowPanel.cs
- StringReader.cs
- SmiSettersStream.cs
- LexicalChunk.cs
- ChangeProcessor.cs
- RowsCopiedEventArgs.cs
- FileIOPermission.cs
- ValuePattern.cs
- EntityParameterCollection.cs
- StylusSystemGestureEventArgs.cs
- HttpHandlersSection.cs
- BitmapEffectDrawingContextWalker.cs
- Line.cs
- DuplicateDetector.cs
- ChooseAction.cs
- Msec.cs
- XmlBindingWorker.cs
- Nullable.cs
- DataColumnChangeEvent.cs
- StaticTextPointer.cs
- OleDbErrorCollection.cs
- UnionExpr.cs
- TreeViewItem.cs
- XmlReader.cs
- ToolStripDropDownMenu.cs
- PointLight.cs
- RoutedEventValueSerializer.cs
- MailAddressCollection.cs
- MultiTargetingUtil.cs
- TemplateColumn.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- CheckoutException.cs
- StylusPointCollection.cs
- EntityClientCacheEntry.cs
- dataobject.cs
- ThemeDictionaryExtension.cs
- LocalValueEnumerator.cs
- SByteStorage.cs
- MemberAccessException.cs
- BinaryUtilClasses.cs
- CodeVariableReferenceExpression.cs
- FutureFactory.cs
- TransformGroup.cs
- ObjectAnimationBase.cs
- ThumbButtonInfo.cs
- _ProxyRegBlob.cs
- DataSetViewSchema.cs
- PropertyInformation.cs
- ListenerHandler.cs
- FileChangesMonitor.cs
- NamespaceQuery.cs
- ReversePositionQuery.cs
- UInt32Storage.cs
- ConfigXmlText.cs
- Validator.cs
- RuntimeArgumentHandle.cs
- MediaCommands.cs
- ConfigurationValues.cs
- figurelengthconverter.cs
- XsdDuration.cs
- DbProviderConfigurationHandler.cs
- MergeFilterQuery.cs
- DSGeneratorProblem.cs
- ColumnMap.cs
- ThemeDirectoryCompiler.cs
- LogWriteRestartAreaAsyncResult.cs
- FrameworkContentElement.cs
- VirtualizedItemProviderWrapper.cs
- RepeaterItem.cs
- TransactionTraceIdentifier.cs
- GifBitmapEncoder.cs
- StringUtil.cs
- HttpCachePolicyWrapper.cs
- CapabilitiesPattern.cs
- ListMarkerLine.cs
- PolygonHotSpot.cs
- ExtendedPropertyDescriptor.cs
- ConcurrencyMode.cs
- RegexParser.cs
- WindowsStatic.cs
- ToolboxComponentsCreatingEventArgs.cs
- SemanticBasicElement.cs
- BinaryObjectWriter.cs
- ColorAnimation.cs
- HeaderedItemsControl.cs
- TemplatePagerField.cs
- PasswordRecovery.cs
- BooleanFacetDescriptionElement.cs
- StaticContext.cs
- ToolStripPanelRenderEventArgs.cs
- EventData.cs