일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- attr()
- CONVERT()
- windows
- Excel
- 이클립스
- 자바스크립트
- replace()
- 윈도우
- 리포팅서비스
- 태그를 입력해 주세요.
- DataGrid
- MSSQL
- microsoft
- MS
- 단축키
- SSRS
- 오라클
- 프로시저
- javascript
- Winform
- oracle
- 비주얼스튜디오
- ASP
- 엑셀
- 마이크로소프트
- jQuery
- IIS
- 윈폼
- c#
- aspnet
Archives
- Today
- Total
DJ메탈짱™의 Free Style
C# Keys 열거형,Enum.Keys, Shift, Combination, 키조합, TryParse, IsDefined, Validation ,Check 본문
일(job)/MS(Microsoft)
C# Keys 열거형,Enum.Keys, Shift, Combination, 키조합, TryParse, IsDefined, Validation ,Check
뽀&쏭 2016. 1. 7. 13:41Keys key;
// 입력된 값이 Enum으로 Convert가 정상적으로 되는지 확인.
if (Enum.TryParse(ShortKey, out key))
{
// Keys Enum에서 사용가능한 값인지 확인
if (!Enum.IsDefined(typeof(Shortcut), ShortKey.Replace("Control","Ctrl").Replace(",", "")))
{
//{0}는 사용하실 수 없는 키조합 입니다.
this.Warning(this.GetResourceValue("CMM_008", "[" + ShortKey + "]"));
this.ShortKey = "";
return false;
}
}
else
{
//{0}의 형식이 일치하지 않습니다.
this.Warning(this.GetResourceValue("SYS_010", this.lblShortKey.Text));
this.ShortKey = "";
return false;
}
MSDN에서 확인하기 : http://msdn.microsoft.com/ko-kr/library/system.windows.forms.shortcut.aspx