コード例 #1
0
ファイル: WaitSplash.cs プロジェクト: cbriand234/Client_PM_03
 static private void ShowForm()
 {
     waitSplash = new WaitSplash();
     if (CallerForm != null)
     {
         _ActiveControl = CallerForm.ActiveControl;
     }
     Application.Run(waitSplash);
 }
コード例 #2
0
        private void GetoriginalImageOfSelectedPhoto()
        {
            if (this.Parent != null)
            {
                WaitSplash.Show(this.Parent as Form, "Loading selected photo ...");
            }

            PBX_SelectedPhoto.BackgroundImage = PhotosList.SelectedPhotoBox.Photo.GetOriginalImage();

            if (this.Parent != null)
            {
                WaitSplash.Hide();
            }
        }
コード例 #3
0
ファイル: WaitSplash.cs プロジェクト: cbriand234/Client_PM_03
 static private void CloseFormInternal()
 {
     waitSplash.Close();
     waitSplash = null;
 }