3 instantiations of InputScope
PresentationCore (1)
Core\CSharp\System\Windows\Input\InputScopeConverter.cs (1)
126inputScope = new InputScope();
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5481bamlType.DefaultConstructor = delegate() { return new System.Windows.Input.InputScope(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1330case KnownElements.InputScope: o = new System.Windows.Input.InputScope(); break;
22 references to InputScope
PresentationCore (8)
Core\CSharp\System\Windows\Input\InputMethod.cs (5)
432typeof(InputScope), 434new PropertyMetadata((InputScope) null)); 439public static void SetInputScope(DependencyObject target, InputScope value) 453public static InputScope GetInputScope(DependencyObject target) 460return (InputScope)(target.GetValue(InputScopeProperty));
Core\CSharp\System\Windows\Input\InputScopeConverter.cs (3)
110InputScope inputScope; 153InputScope inputScope = value as InputScope;
PresentationFramework (14)
src\Framework\System\Windows\Documents\InputScopeAttribute.cs (2)
47internal InputScopeAttribute(InputScope inputscope) 195private InputScope _inputScope;
src\Framework\System\Windows\Documents\TextStore.cs (3)
721PrepareAttributes((InputScope)UiScope.GetValue(InputMethod.InputScopeProperty), 741PrepareAttributes((InputScope)position.GetValue(InputMethod.InputScopeProperty), 2658private void PrepareAttributes(InputScope inputScope, double fontSize, FontFamily fontFamily, XmlLanguage language, Visual visual, int count, Guid[] filterAttributes)
src\Framework\System\Windows\FrameworkContentElement.cs (3)
1098new FrameworkPropertyMetadata((InputScope)null, // default value 1104public InputScope InputScope 1106get { return (InputScope) GetValue(InputScopeProperty); }
src\Framework\System\Windows\FrameworkElement.cs (3)
3265new FrameworkPropertyMetadata((InputScope)null, // default value 3271public InputScope InputScope 3273get { return (InputScope) GetValue(InputScopeProperty); }
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
390case 298: t = () => typeof(InputScope); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5479typeof(System.Windows.Input.InputScope),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5842case KnownElements.InputScope: t = typeof(System.Windows.Input.InputScope); break;