Dreamine.UI.Abstractions 1.0.1
Dreamine.UI.Abstractions 공용 계약과 추상화를 제공합니다.
로딩중...
검색중...
일치하는것 없음
KeyData.cs
이 파일의 문서화 페이지로 가기
2
11public class KeyData
12{
21 public string DefaultKey { get; set; } = string.Empty;
30 public string ShiftKey { get; set; } = string.Empty;
39 public string KorKey { get; set; } = string.Empty;
48 public string KorShiftKey { get; set; } = string.Empty;
57 public string ChnKey { get; set; } = string.Empty;
66 public string ChnShiftKey { get; set; } = string.Empty;
67
124 public KeyData(
125 string defaultKey = "", string shiftKey = "",
126 string korKey = "", string korShiftKey = "",
127 string chnKey = "", string chnShiftKey = "")
128 {
129 DefaultKey = defaultKey;
130 ShiftKey = shiftKey;
131 KorKey = korKey;
132 KorShiftKey = korShiftKey;
133 ChnKey = chnKey;
134 ChnShiftKey = chnShiftKey;
135 }
136}
KeyData(string defaultKey="", string shiftKey="", string korKey="", string korShiftKey="", string chnKey="", string chnShiftKey="")
Definition KeyData.cs:124