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