1 instantiation of TextCompositionManager
PresentationCore (1)
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (1)
49_textcompositionManager = new SecurityCriticalData<TextCompositionManager>(new TextCompositionManager(inputManager));
60 references to TextCompositionManager
PresentationCore (49)
Core\CSharp\MS\Internal\SynchronizedInputHelper.cs (2)
48re == TextCompositionManager.TextInputEvent || 276e = new RoutedEvent[] {Keyboard.KeyDownEvent, TextCompositionManager.TextInputEvent};
Core\CSharp\System\Windows\Generated\ContentElement.cs (6)
1849public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.PreviewTextInputEvent.AddOwner(_typeofThis); 1856add { AddHandler(TextCompositionManager.PreviewTextInputEvent, value, false); } 1857remove { RemoveHandler(TextCompositionManager.PreviewTextInputEvent, value); } 1868public static readonly RoutedEvent TextInputEvent = TextCompositionManager.TextInputEvent.AddOwner(_typeofThis); 1875add { AddHandler(TextCompositionManager.TextInputEvent, value, false); } 1876remove { RemoveHandler(TextCompositionManager.TextInputEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (8)
856EventManager.RegisterClassHandler(type, TextCompositionManager.PreviewTextInputEvent, new TextCompositionEventHandler(UIElement.OnPreviewTextInputThunk), false); 857EventManager.RegisterClassHandler(type, TextCompositionManager.TextInputEvent, new TextCompositionEventHandler(UIElement.OnTextInputThunk), false); 4127public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.PreviewTextInputEvent.AddOwner(_typeofThis); 4134add { AddHandler(TextCompositionManager.PreviewTextInputEvent, value, false); } 4135remove { RemoveHandler(TextCompositionManager.PreviewTextInputEvent, value); } 4146public static readonly RoutedEvent TextInputEvent = TextCompositionManager.TextInputEvent.AddOwner(_typeofThis); 4153add { AddHandler(TextCompositionManager.TextInputEvent, value, false); } 4154remove { RemoveHandler(TextCompositionManager.TextInputEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (6)
1555public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.PreviewTextInputEvent.AddOwner(_typeofThis); 1562add { AddHandler(TextCompositionManager.PreviewTextInputEvent, value, false); } 1563remove { RemoveHandler(TextCompositionManager.PreviewTextInputEvent, value); } 1574public static readonly RoutedEvent TextInputEvent = TextCompositionManager.TextInputEvent.AddOwner(_typeofThis); 1581add { AddHandler(TextCompositionManager.TextInputEvent, value, false); } 1582remove { RemoveHandler(TextCompositionManager.TextInputEvent, value); }
Core\CSharp\System\Windows\Input\AccessKeyManager.cs (1)
239else if (e.StagingItem.Input.RoutedEvent == TextCompositionManager.TextInputEvent)
Core\CSharp\System\Windows\Input\DefaultTextStore.cs (5)
164TextCompositionManager compmgr = InputManager.Current.PrimaryKeyboardDevice.TextCompositionManager; 177TextCompositionManager.StartComposition(_composition); 190TextCompositionManager.CompleteComposition(_composition); 209TextCompositionManager.StartComposition(_composition); 216TextCompositionManager.UpdateComposition(_composition);
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (3)
49_textcompositionManager = new SecurityCriticalData<TextCompositionManager>(new TextCompositionManager(inputManager)); 327internal TextCompositionManager TextCompositionManager 1188private SecurityCriticalData<TextCompositionManager> _textcompositionManager;
Core\CSharp\System\Windows\Input\TextComposition.cs (1)
172TextCompositionManager.CompleteComposition(this);
Core\CSharp\System\Windows\Input\TextCompositionManager.cs (17)
60public static readonly RoutedEvent PreviewTextInputStartEvent = EventManager.RegisterRoutedEvent("PreviewTextInputStart", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 95public static readonly RoutedEvent TextInputStartEvent = EventManager.RegisterRoutedEvent("TextInputStart", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 130public static readonly RoutedEvent PreviewTextInputUpdateEvent = EventManager.RegisterRoutedEvent("PreviewTextInputUpdate", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 165public static readonly RoutedEvent TextInputUpdateEvent = EventManager.RegisterRoutedEvent("TextInputUpdate", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 200public static readonly RoutedEvent PreviewTextInputEvent = EventManager.RegisterRoutedEvent("PreviewTextInput", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 235public static readonly RoutedEvent TextInputEvent = EventManager.RegisterRoutedEvent("TextInput", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 412textargs.RoutedEvent=TextCompositionManager.PreviewTextInputStartEvent; 445textargs.RoutedEvent=TextCompositionManager.PreviewTextInputUpdateEvent; 478textargs.RoutedEvent=TextCompositionManager.PreviewTextInputEvent; 668else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.PreviewTextInputStartEvent) 674text.RoutedEvent=TextCompositionManager.TextInputStartEvent; 681else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.PreviewTextInputUpdateEvent) 687text.RoutedEvent=TextCompositionManager.TextInputUpdateEvent; 694else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.PreviewTextInputEvent) 700text.RoutedEvent=TextCompositionManager.TextInputEvent; 707else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.TextInputStartEvent) 720else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.TextInputUpdateEvent)
PresentationFramework (11)
src\Framework\System\Windows\Documents\ImmComposition.cs (3)
1114bool handled = TextCompositionManager.StartComposition(composition); 1149bool handled = TextCompositionManager.UpdateComposition(composition); 1189TextCompositionManager.CompleteComposition(composition);
src\Framework\System\windows\Documents\TextEditorTyping.cs (1)
70EventManager.RegisterClassHandler(controlType, TextCompositionManager.TextInputEvent, new TextCompositionEventHandler(OnTextInput));
src\Framework\System\Windows\Documents\TextStore.cs (4)
3565handled = TextCompositionManager.StartComposition(composition); 3596handled = TextCompositionManager.CompleteComposition(composition); 3603handled = TextCompositionManager.UpdateComposition(composition); 3622handled = TextCompositionManager.CompleteComposition(composition);
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
734case 642: t = () => typeof(TextCompositionManager); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9986typeof(System.Windows.Input.TextCompositionManager),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6186case KnownElements.TextCompositionManager: t = typeof(System.Windows.Input.TextCompositionManager); break;