You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
////FIXME: This should never have been a Key but rather just an extra button or state on keyboard
846
-
// Not exactly a key, but binary data sent by the Keyboard to say if IME is being used.
847
-
IMESelected
878
+
/// <summary>
879
+
/// Don't use this. This is a dummy key that is only used internally to represent the IME selected state.
880
+
/// Will be removed in the future.
881
+
/// </summary>
882
+
[Obsolete("Don't use this. This is a dummy key that is only used internally to represent the IME selected state. Will be removed in the future.",true)]
883
+
IMESelected,
884
+
885
+
/// <summary>
886
+
/// The <see cref="Keyboard.f13Key"/>.
887
+
/// </summary>
888
+
F13,
889
+
890
+
/// <summary>
891
+
/// The <see cref="Keyboard.f14Key"/>.
892
+
/// </summary>
893
+
F14,
894
+
895
+
/// <summary>
896
+
/// The <see cref="Keyboard.f15Key"/>.
897
+
/// </summary>
898
+
F15,
899
+
900
+
/// <summary>
901
+
/// The <see cref="Keyboard.f16Key"/>.
902
+
/// </summary>
903
+
F16,
904
+
905
+
/// <summary>
906
+
/// The <see cref="Keyboard.f17Key"/>.
907
+
/// </summary>
908
+
F17,
909
+
910
+
/// <summary>
911
+
/// The <see cref="Keyboard.f18Key"/>.
912
+
/// </summary>
913
+
F18,
914
+
915
+
/// <summary>
916
+
/// The <see cref="Keyboard.f19Key"/>.
917
+
/// </summary>
918
+
F19,
919
+
920
+
/// <summary>
921
+
/// The <see cref="Keyboard.f20Key"/>.
922
+
/// </summary>
923
+
F20,
924
+
925
+
/// <summary>
926
+
/// The <see cref="Keyboard.f21Key"/>.
927
+
/// </summary>
928
+
F21,
929
+
930
+
/// <summary>
931
+
/// The <see cref="Keyboard.f22Key"/>.
932
+
/// </summary>
933
+
F22,
934
+
935
+
/// <summary>
936
+
/// The <see cref="Keyboard.f23Key"/>.
937
+
/// </summary>
938
+
F23,
939
+
940
+
/// <summary>
941
+
/// The <see cref="Keyboard.f24Key"/>.
942
+
/// </summary>
943
+
F24,
944
+
945
+
/// <summary>
946
+
/// Don't use this. This is a dummy key that is only used internally to represent the IME selected state.
947
+
/// Will be removed in the future.
948
+
/// FIXME: This should never have been a Key but rather just an extra button or state on keyboard
949
+
/// Not exactly a key, but binary data sent by the Keyboard to say if IME is being used.
950
+
/// </summary>
951
+
//InternalForIMESelected = 127,
952
+
}
953
+
954
+
internalstaticclassKeyEx
955
+
{
956
+
internalconstKeyIMESelected=(Key)111;//IMESelected value
957
+
internalconstKeyRemapedIMESelected=(Key)127;//IMESelected value
0 commit comments