WinForm WaitIndicator 추가방법


추가할 프로젝트 우클릭 -> Add DevExpress Item -> New Item -> Progress Indicator 추가



[ MouseClick_Event ] 부분에 추가


UserLookAndFeel.Default.SetSkinStyle("Office 2013 Dark Gray");// 사용할 디자인(여러가지 스타일이 있음 속성확인후 적용)

SplashScreenManager.ShowForm(null, typeof(Frm_WaitForm), true, true, false);   // 스크린출력    

SplashScreenManager.Default.SetWaitFormCaption("잠시기다려주세요...");   // 출력되는 메시지 입력

SplashScreenManager.CloseForm();  // 출력해제



기타 배경색, 폰트크기, 폰트컬러등등 속성에서 변경가능 

'Programing > C#' 카테고리의 다른 글

Datetime, DatetimePicker을 string으로 변환  (0) 2018.10.01
아이디 등록시 특수문자 체크  (0) 2018.09.18
set, get 접근자  (0) 2018.06.29
할당문과 변수초기화  (0) 2018.06.29
상수(Constant)  (0) 2018.06.28

+ Recent posts