1 instantiation of InputMethod
PresentationCore (1)
Core\CSharp\System\Windows\Input\InputMethod.cs (1)
481inputMethod = new InputMethod();
48 references to InputMethod
PresentationCore (35)
Core\CSharp\System\Windows\ContentElement.cs (1)
762get { return (bool) GetValue(InputMethod.IsInputMethodEnabledProperty); }
Core\CSharp\System\Windows\Input\DefaultTextStore.cs (2)
254DefaultTextStore defaulttextstore = InputMethod.Current.DefaultTextStore; 259InputMethod.Current.DefaultTextStore = defaulttextstore;
Core\CSharp\System\Windows\Input\InputLanguageManager.cs (3)
269if(InputMethod.Current.InputLanguageManager == null) 271InputMethod.Current.InputLanguageManager = new InputLanguageManager(); 273return InputMethod.Current.InputLanguageManager;
Core\CSharp\System\Windows\Input\InputMethod.cs (10)
236typeof(InputMethod), 277typeof(InputMethod), 317typeof(InputMethod), 356typeof(InputMethod), 395typeof(InputMethod), 433typeof(InputMethod), 467public static InputMethod Current 471InputMethod inputMethod = null; 477inputMethod = dispatcher.InputMethod as InputMethod; 1407InputMethod.Current.EnableOrDisableInputMethod((bool) e.NewValue);
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (1)
561InputMethod.Current.GotKeyboardFocus(_focus);
Core\CSharp\System\Windows\Input\TextServicesCompartmentContext.cs (3)
172if (InputMethod.Current.TextServicesCompartmentContext == null) 173InputMethod.Current.TextServicesCompartmentContext = new TextServicesCompartmentContext(); 175return InputMethod.Current.TextServicesCompartmentContext;
Core\CSharp\System\Windows\Input\TextServicesCompartmentEventSink.cs (2)
43internal TextServicesCompartmentEventSink(InputMethod inputmethod) 70private InputMethod _inputmethod;
Core\CSharp\System\Windows\Input\TextServicesContext.cs (4)
112InputMethod.Current.DefaultTextStore = null; 305if (InputMethod.Current.TextServicesContext == null) 307InputMethod.Current.TextServicesContext = new TextServicesContext(); 310return InputMethod.Current.TextServicesContext;
Core\CSharp\System\Windows\Input\TextServicesManager.cs (7)
95if ((bool)focus.GetValue(InputMethod.IsInputMethodSuspendedProperty)) 102InputMethod.Current.EnableOrDisableInputMethod((bool)focus.GetValue(InputMethod.IsInputMethodEnabledProperty)); 149if (InputMethod.IsImm32ImeCurrent()) 153if ((element == null) || (bool)element.GetValue(InputMethod.IsInputMethodSuspendedProperty)) 189if (InputMethod.IsImm32ImeCurrent()) 193if ((element == null) || (bool)element.GetValue(InputMethod.IsInputMethodSuspendedProperty))
Core\CSharp\System\Windows\UIElement.cs (1)
2697get { return (bool) GetValue(InputMethod.IsInputMethodEnabledProperty); }
Core\CSharp\System\Windows\UIElement3D.cs (1)
656get { return (bool)GetValue(InputMethod.IsInputMethodEnabledProperty); }
PresentationFramework (13)
src\Framework\System\Windows\Controls\MenuItem.cs (1)
203InputMethod.IsInputMethodSuspendedProperty.OverrideMetadata(typeof(MenuItem), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox, FrameworkPropertyMetadataOptions.Inherits));
src\Framework\System\Windows\Controls\PasswordBox.cs (1)
76InputMethod.IsInputMethodEnabledProperty.OverrideMetadata(typeof(PasswordBox),
src\Framework\System\Windows\Controls\Primitives\ButtonBase.cs (1)
42InputMethod.IsInputMethodEnabledProperty.OverrideMetadata(typeof(ButtonBase), new FrameworkPropertyMetadata(BooleanBoxes.FalseBox, FrameworkPropertyMetadataOptions.Inherits));
src\Framework\System\Windows\Controls\Primitives\MenuBase.cs (1)
76InputMethod.IsInputMethodSuspendedProperty.OverrideMetadata(typeof(MenuBase), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox, FrameworkPropertyMetadataOptions.Inherits));
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (1)
71InputMethod.IsInputMethodEnabledProperty.OverrideMetadata(typeof(TextBoxBase),
src\Framework\System\Windows\Documents\TextStore.cs (3)
721PrepareAttributes((InputScope)UiScope.GetValue(InputMethod.InputScopeProperty), 741PrepareAttributes((InputScope)position.GetValue(InputMethod.InputScopeProperty), 1550if ((bool)UiScope.GetValue(InputMethod.IsInputMethodEnabledProperty))
src\Framework\System\Windows\FrameworkContentElement.cs (1)
1097InputMethod.InputScopeProperty.AddOwner(typeof(FrameworkContentElement),
src\Framework\System\Windows\FrameworkElement.cs (1)
3264InputMethod.InputScopeProperty.AddOwner(_typeofThis,
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
389case 297: t = () => typeof(InputMethod); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5468typeof(System.Windows.Input.InputMethod),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5841case KnownElements.InputMethod: t = typeof(System.Windows.Input.InputMethod); break;