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