Example #1
0
 private void EndLoading()
 {
     _formLoading.Dispose();
     _formLoading = null;
     Opacity = 100;
     Focus();
 }
Example #2
0
 private void BeginLoading()
 {
     Opacity = 0;
     _formLoading = new frmLoading().Show();
 }