[C#/DevExpress] WaitForm Loading 팝업만들기
SplashScreenManager를 이용하여 Loading 팝업 만들기 DevExpress에서 WaitForm 클래스를 제공하고 있습니다. 개발자 입장에서는 WaitForm을 어떠한 방식(ex. Pop, Background Thread, SplashScreenManager)으로 사용자에게 보여줄지만 고민하면 됩니다. 첫 번째, WaitForm을 한번 감싸주는 Form을 만들어줍니다. using DevExpress.XtraWaitForm; ... public partial class LoadingForm : WaitForm { public WaitFormEx() { InitializeComponent(); this.progressPanel1.AutoWidth = false; this.progressPan..