1 instantiation of TextCompositionManager
PresentationCore (1)
System\Windows\Input\KeyboardDevice.cs (1)
46_textcompositionManager = new TextCompositionManager(inputManager);
62 references to TextCompositionManager
PresentationCore (48)
MS\Internal\SynchronizedInputHelper.cs (2)
52re == TextCompositionManager.TextInputEvent || 280e = new RoutedEvent[] {Keyboard.KeyDownEvent, TextCompositionManager.TextInputEvent};
System\Windows\Generated\ContentElement.cs (6)
1789public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.PreviewTextInputEvent.AddOwner(_typeofThis); 1796add { AddHandler(TextCompositionManager.PreviewTextInputEvent, value, false); } 1797remove { RemoveHandler(TextCompositionManager.PreviewTextInputEvent, value); } 1808public static readonly RoutedEvent TextInputEvent = TextCompositionManager.TextInputEvent.AddOwner(_typeofThis); 1815add { AddHandler(TextCompositionManager.TextInputEvent, value, false); } 1816remove { RemoveHandler(TextCompositionManager.TextInputEvent, value); }
System\Windows\Generated\UIElement.cs (8)
791EventManager.RegisterClassHandler(type, TextCompositionManager.PreviewTextInputEvent, new TextCompositionEventHandler(UIElement.OnPreviewTextInputThunk), false); 792EventManager.RegisterClassHandler(type, TextCompositionManager.TextInputEvent, new TextCompositionEventHandler(UIElement.OnTextInputThunk), false); 3742public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.PreviewTextInputEvent.AddOwner(_typeofThis); 3749add { AddHandler(TextCompositionManager.PreviewTextInputEvent, value, false); } 3750remove { RemoveHandler(TextCompositionManager.PreviewTextInputEvent, value); } 3761public static readonly RoutedEvent TextInputEvent = TextCompositionManager.TextInputEvent.AddOwner(_typeofThis); 3768add { AddHandler(TextCompositionManager.TextInputEvent, value, false); } 3769remove { RemoveHandler(TextCompositionManager.TextInputEvent, value); }
System\Windows\Generated\UIElement3D.cs (6)
1510public static readonly RoutedEvent PreviewTextInputEvent = TextCompositionManager.PreviewTextInputEvent.AddOwner(_typeofThis); 1517add { AddHandler(TextCompositionManager.PreviewTextInputEvent, value, false); } 1518remove { RemoveHandler(TextCompositionManager.PreviewTextInputEvent, value); } 1529public static readonly RoutedEvent TextInputEvent = TextCompositionManager.TextInputEvent.AddOwner(_typeofThis); 1536add { AddHandler(TextCompositionManager.TextInputEvent, value, false); } 1537remove { RemoveHandler(TextCompositionManager.TextInputEvent, value); }
System\Windows\Input\AccessKeyManager.cs (1)
215else if (e.StagingItem.Input.RoutedEvent == TextCompositionManager.TextInputEvent)
System\Windows\Input\DefaultTextStore.cs (5)
139TextCompositionManager compmgr = InputManager.Current.PrimaryKeyboardDevice.TextCompositionManager; 151TextCompositionManager.StartComposition(_composition); 164TextCompositionManager.CompleteComposition(_composition); 182TextCompositionManager.StartComposition(_composition); 189TextCompositionManager.UpdateComposition(_composition);
System\Windows\Input\KeyboardDevice.cs (2)
272internal TextCompositionManager TextCompositionManager => _textcompositionManager; 1073private readonly TextCompositionManager _textcompositionManager;
System\Windows\Input\TextComposition.cs (1)
148TextCompositionManager.CompleteComposition(this);
System\Windows\Input\TextCompositionManager.cs (17)
54public static readonly RoutedEvent PreviewTextInputStartEvent = EventManager.RegisterRoutedEvent("PreviewTextInputStart", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 83public static readonly RoutedEvent TextInputStartEvent = EventManager.RegisterRoutedEvent("TextInputStart", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 112public static readonly RoutedEvent PreviewTextInputUpdateEvent = EventManager.RegisterRoutedEvent("PreviewTextInputUpdate", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 141public static readonly RoutedEvent TextInputUpdateEvent = EventManager.RegisterRoutedEvent("TextInputUpdate", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 170public static readonly RoutedEvent PreviewTextInputEvent = EventManager.RegisterRoutedEvent("PreviewTextInput", RoutingStrategy.Tunnel, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 199public static readonly RoutedEvent TextInputEvent = EventManager.RegisterRoutedEvent("TextInput", RoutingStrategy.Bubble, typeof(TextCompositionEventHandler), typeof(TextCompositionManager)); 330textargs.RoutedEvent=TextCompositionManager.PreviewTextInputStartEvent; 355textargs.RoutedEvent=TextCompositionManager.PreviewTextInputUpdateEvent; 381textargs.RoutedEvent=TextCompositionManager.PreviewTextInputEvent; 534else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.PreviewTextInputStartEvent) 540text.RoutedEvent=TextCompositionManager.TextInputStartEvent; 547else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.PreviewTextInputUpdateEvent) 553text.RoutedEvent=TextCompositionManager.TextInputUpdateEvent; 560else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.PreviewTextInputEvent) 566text.RoutedEvent=TextCompositionManager.TextInputEvent; 573else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.TextInputStartEvent) 586else if(e.StagingItem.Input.RoutedEvent == TextCompositionManager.TextInputUpdateEvent)
PresentationFramework (11)
System\Windows\Documents\ImmComposition.cs (3)
992bool handled = TextCompositionManager.StartComposition(composition); 1022bool handled = TextCompositionManager.UpdateComposition(composition); 1057TextCompositionManager.CompleteComposition(composition);
System\windows\Documents\TextEditorTyping.cs (1)
67EventManager.RegisterClassHandler(controlType, TextCompositionManager.TextInputEvent, new TextCompositionEventHandler(OnTextInput));
System\Windows\Documents\TextStore.cs (4)
3668handled = TextCompositionManager.StartComposition(composition); 3709handled = TextCompositionManager.CompleteComposition(composition); 3726handled = TextCompositionManager.UpdateComposition(composition); 3756handled = TextCompositionManager.CompleteComposition(composition);
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
738case 642: t = () => typeof(TextCompositionManager); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9990typeof(System.Windows.Input.TextCompositionManager),
System\Windows\Markup\KnownTypes.cs (1)
6196case KnownElements.TextCompositionManager: t = typeof(System.Windows.Input.TextCompositionManager); break;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\KeyTipService.cs (1)
704else if (routedEvent == TextCompositionManager.PreviewTextInputEvent)
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (1)
533if (!e.StagingItem.Input.Handled && e.StagingItem.Input.RoutedEvent == SWI.TextCompositionManager.TextInputEvent)
System\Windows\Integration\WindowsFormsHost.cs (1)
1021if (!e.StagingItem.Input.Handled && e.StagingItem.Input.RoutedEvent == SWI.TextCompositionManager.TextInputEvent)