3 instantiations of InputScope
PresentationCore (1)
System\Windows\Input\InputScopeConverter.cs (1)
122inputScope = new InputScope();
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5973DefaultConstructor = delegate () { return new System.Windows.Input.InputScope(); },
System\Windows\Markup\KnownTypes.cs (1)
1322case KnownElements.InputScope: o = new System.Windows.Input.InputScope(); break;
22 references to InputScope
PresentationCore (8)
System\Windows\Input\InputMethod.cs (5)
380typeof(InputScope), 382new PropertyMetadata((InputScope) null)); 387public static void SetInputScope(DependencyObject target, InputScope value) 398public static InputScope GetInputScope(DependencyObject target) 402return (InputScope)(target.GetValue(InputScopeProperty));
System\Windows\Input\InputScopeConverter.cs (3)
103InputScope inputScope; 149InputScope inputScope = value as InputScope;
PresentationFramework (14)
System\Windows\Documents\InputScopeAttribute.cs (2)
31internal InputScopeAttribute(InputScope inputscope) 168private InputScope _inputScope;
System\Windows\Documents\TextStore.cs (3)
846PrepareAttributes((InputScope)UiScope.GetValue(InputMethod.InputScopeProperty), 866PrepareAttributes((InputScope)position.GetValue(InputMethod.InputScopeProperty), 2756private void PrepareAttributes(InputScope inputScope, double fontSize, FontFamily fontFamily, XmlLanguage language, Visual visual, int count, Guid[] filterAttributes)
System\Windows\FrameworkContentElement.cs (3)
1068new FrameworkPropertyMetadata((InputScope)null, // default value 1074public InputScope InputScope 1076get { return (InputScope) GetValue(InputScopeProperty); }
System\Windows\FrameworkElement.cs (3)
3243new FrameworkPropertyMetadata((InputScope)null, // default value 3249public InputScope InputScope 3251get { return (InputScope) GetValue(InputScopeProperty); }
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
391case 298: t = () => typeof(InputScope); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
5970typeof(System.Windows.Input.InputScope),
System\Windows\Markup\KnownTypes.cs (1)
5845case KnownElements.InputScope: t = typeof(System.Windows.Input.InputScope); break;