33 references to InputMethodState
PresentationCore (33)
Core\CSharp\System\Windows\Input\InputMethod.cs (33)
316
typeof(
InputMethodState
),
318
new PropertyMetadata(
InputMethodState
.DoNotCare));
323
public static void SetPreferredImeState(DependencyObject target,
InputMethodState
value)
337
public static
InputMethodState
GetPreferredImeState(DependencyObject target)
344
return (
InputMethodState
)(target.GetValue(PreferredImeStateProperty));
575
public
InputMethodState
ImeState
589
return compartment.BooleanValue ?
InputMethodState
.On
590
:
InputMethodState
.Off;
605
return fOpen ?
InputMethodState
.On :
InputMethodState
.Off;
608
return
InputMethodState
.Off;
614
Debug.Assert(value !=
InputMethodState
.DoNotCare);
624
if (compartment.BooleanValue != (value ==
InputMethodState
.On))
626
compartment.BooleanValue = (value ==
InputMethodState
.On);
644
if (fOpen != (value ==
InputMethodState
.On))
646
UnsafeNativeMethods.ImmSetOpenStatus(new HandleRef(this, himc), (value ==
InputMethodState
.On));
667
public
InputMethodState
MicrophoneState
676
return compartment.BooleanValue ?
InputMethodState
.On
677
:
InputMethodState
.Off;
679
return
InputMethodState
.Off;
687
Debug.Assert(value !=
InputMethodState
.DoNotCare);
694
if (compartment.BooleanValue != (value ==
InputMethodState
.On))
696
compartment.BooleanValue = (value ==
InputMethodState
.On);
709
public
InputMethodState
HandwritingState
718
return compartment.BooleanValue ?
InputMethodState
.On
719
:
InputMethodState
.Off;
721
return
InputMethodState
.Off;
727
Debug.Assert(value !=
InputMethodState
.DoNotCare);
734
if (compartment.BooleanValue != (value ==
InputMethodState
.On))
736
compartment.BooleanValue = (value ==
InputMethodState
.On);
1338
if ((value != null) && ((
InputMethodState
)value !=
InputMethodState
.DoNotCare))
1340
ImeState = (
InputMethodState
)value;