3 instantiations of InputScope
PresentationCore (1)
System\Windows\Input\InputScopeConverter.cs (1)
127inputScope = new InputScope();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5485bamlType.DefaultConstructor = delegate() { return new System.Windows.Input.InputScope(); };
System\Windows\Markup\KnownTypes.cs (1)
1329case KnownElements.InputScope: o = new System.Windows.Input.InputScope(); break;
22 references to InputScope
PresentationCore (8)
System\Windows\Input\InputMethod.cs (5)
395typeof(InputScope), 397new PropertyMetadata((InputScope) null)); 402public static void SetInputScope(DependencyObject target, InputScope value) 413public static InputScope GetInputScope(DependencyObject target) 417return (InputScope)(target.GetValue(InputScopeProperty));
System\Windows\Input\InputScopeConverter.cs (3)
108InputScope inputScope; 154InputScope inputScope = value as InputScope;
PresentationFramework (14)
System\Windows\Documents\InputScopeAttribute.cs (2)
40internal InputScopeAttribute(InputScope inputscope) 177private InputScope _inputScope;
System\Windows\Documents\TextStore.cs (3)
858PrepareAttributes((InputScope)UiScope.GetValue(InputMethod.InputScopeProperty), 878PrepareAttributes((InputScope)position.GetValue(InputMethod.InputScopeProperty), 2774private void PrepareAttributes(InputScope inputScope, double fontSize, FontFamily fontFamily, XmlLanguage language, Visual visual, int count, Guid[] filterAttributes)
System\Windows\FrameworkContentElement.cs (3)
1089new FrameworkPropertyMetadata((InputScope)null, // default value 1095public InputScope InputScope 1097get { return (InputScope) GetValue(InputScopeProperty); }
System\Windows\FrameworkElement.cs (3)
3266new FrameworkPropertyMetadata((InputScope)null, // default value 3272public InputScope InputScope 3274get { return (InputScope) GetValue(InputScopeProperty); }
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
394case 298: t = () => typeof(InputScope); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5483typeof(System.Windows.Input.InputScope),
System\Windows\Markup\KnownTypes.cs (1)
5852case KnownElements.InputScope: t = typeof(System.Windows.Input.InputScope); break;