Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Input / DeadCharTextComposition.cs / 1305600 / DeadCharTextComposition.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: the DeadCharTextComposition class // // History: // 06/14/2004 : yutakas created // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Text; using System.Windows.Threading; using System.Windows; using System.Security; using MS.Win32; using Microsoft.Win32; // for RegistryKey class namespace System.Windows.Input { ////// the DeadCharTextComposition class is the composition object for Dead key scequence. /// internal sealed class DeadCharTextComposition : TextComposition { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Critical - calls TextComposition:ctor which is critical ( as it stores InputManager). /// [SecurityCritical] internal DeadCharTextComposition(InputManager inputManager, IInputElement source, string text, TextCompositionAutoComplete autoComplete, InputDevice inputDevice) : base(inputManager, source, text, autoComplete, inputDevice) { } #endregion Constructors //------------------------------------------------------ // // internal Properties // //----------------------------------------------------- internal bool Composed { get {return _composed;} set {_composed = value;} } //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ // If this is true, the text has been composed with actual char. private bool _composed; } } // 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
- DataGridViewColumnStateChangedEventArgs.cs
- XNodeValidator.cs
- Interlocked.cs
- AsyncWaitHandle.cs
- XmlElement.cs
- DocumentDesigner.cs
- NTAccount.cs
- ScrollChrome.cs
- GPPOINTF.cs
- QueryAccessibilityHelpEvent.cs
- Timer.cs
- MobileComponentEditorPage.cs
- RelationshipSet.cs
- CategoryGridEntry.cs
- SortedDictionary.cs
- CategoryAttribute.cs
- ComponentCodeDomSerializer.cs
- DispatcherTimer.cs
- Control.cs
- Pair.cs
- PropertyDescriptor.cs
- PageSetupDialog.cs
- ZoneIdentityPermission.cs
- Point3DKeyFrameCollection.cs
- NotImplementedException.cs
- IIS7UserPrincipal.cs
- UInt32Converter.cs
- ExpressionTable.cs
- DrawingGroupDrawingContext.cs
- MenuBase.cs
- CompilationPass2TaskInternal.cs
- WindowsTab.cs
- oledbconnectionstring.cs
- WebServiceData.cs
- WebPartConnectVerb.cs
- AttachedAnnotationChangedEventArgs.cs
- MemberPathMap.cs
- PromptStyle.cs
- NavigationService.cs
- HyperLinkField.cs
- EntitySqlQueryCacheEntry.cs
- MemberAssignment.cs
- EventListenerClientSide.cs
- ImageListUtils.cs
- DataList.cs
- RecognitionEventArgs.cs
- RtfControls.cs
- AutomationAttributeInfo.cs
- GlobalProxySelection.cs
- StyleXamlTreeBuilder.cs
- SmiEventSink_Default.cs
- WindowsToolbarAsMenu.cs
- GregorianCalendarHelper.cs
- ExecutionContext.cs
- SevenBitStream.cs
- TreeNodeEventArgs.cs
- Application.cs
- CompressStream.cs
- CompoundFileDeflateTransform.cs
- ApplyTemplatesAction.cs
- StreamUpgradeAcceptor.cs
- CompilerErrorCollection.cs
- PeerDefaultCustomResolverClient.cs
- LeafCellTreeNode.cs
- EncoderNLS.cs
- EdmToObjectNamespaceMap.cs
- AttributeEmitter.cs
- DbConnectionPool.cs
- ContentElement.cs
- ReadOnlyDictionary.cs
- HierarchicalDataTemplate.cs
- QuaternionAnimation.cs
- CriticalExceptions.cs
- ColorAnimationUsingKeyFrames.cs
- _NegoState.cs
- PlaceHolder.cs
- WebBrowserContainer.cs
- GroupLabel.cs
- FontUnitConverter.cs
- ConfigurationLocation.cs
- SQLDecimalStorage.cs
- CodeExporter.cs
- ContainerParagraph.cs
- CipherData.cs
- TextDocumentView.cs
- FocusChangedEventArgs.cs
- PropertyGridEditorPart.cs
- TemplatePartAttribute.cs
- InstanceData.cs
- SymLanguageType.cs
- MessageSmuggler.cs
- TraceHandler.cs
- SystemIcmpV4Statistics.cs
- Version.cs
- XmlSchemaImporter.cs
- ItemCheckedEvent.cs
- TimerEventSubscription.cs
- IntegerValidator.cs
- VersionPair.cs
- Polygon.cs