3 instantiations of InputScope
PresentationCore (1)
System\Windows\Input\InputScopeConverter.cs (1)
123inputScope = new InputScope();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5974DefaultConstructor = delegate () { return new System.Windows.Input.InputScope(); },
System\Windows\Markup\KnownTypes.cs (1)
1323case KnownElements.InputScope: o = new System.Windows.Input.InputScope(); break;
22 references to InputScope
PresentationCore (8)
System\Windows\Input\InputMethod.cs (5)
381typeof(InputScope), 383new PropertyMetadata((InputScope) null)); 388public static void SetInputScope(DependencyObject target, InputScope value) 399public static InputScope GetInputScope(DependencyObject target) 403return (InputScope)(target.GetValue(InputScopeProperty));
System\Windows\Input\InputScopeConverter.cs (3)
104InputScope inputScope; 150InputScope inputScope = value as InputScope;
PresentationFramework (14)
System\Windows\Documents\InputScopeAttribute.cs (2)
32internal InputScopeAttribute(InputScope inputscope) 169private InputScope _inputScope;
System\Windows\Documents\TextStore.cs (3)
847PrepareAttributes((InputScope)UiScope.GetValue(InputMethod.InputScopeProperty), 867PrepareAttributes((InputScope)position.GetValue(InputMethod.InputScopeProperty), 2757private void PrepareAttributes(InputScope inputScope, double fontSize, FontFamily fontFamily, XmlLanguage language, Visual visual, int count, Guid[] filterAttributes)
System\Windows\FrameworkContentElement.cs (3)
1069new FrameworkPropertyMetadata((InputScope)null, // default value 1075public InputScope InputScope 1077get { return (InputScope) GetValue(InputScopeProperty); }
System\Windows\FrameworkElement.cs (3)
3244new FrameworkPropertyMetadata((InputScope)null, // default value 3250public InputScope InputScope 3252get { return (InputScope) GetValue(InputScopeProperty); }
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
392case 298: t = () => typeof(InputScope); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5971typeof(System.Windows.Input.InputScope),
System\Windows\Markup\KnownTypes.cs (1)
5846case KnownElements.InputScope: t = typeof(System.Windows.Input.InputScope); break;