Beispiel #1
0
 public static void ShowLoadForm(Form M, Form L)
 {
     if (L == null)
     {
         LForm = new LoadForm();
     }
     if (!L.Visible)
     {
         int Width  = M.Width;
         int Height = M.Height;
         L.Top    = M.Top + Height / 2;
         L.Left   = M.Left + Width / 2;
         L.Width  = 124;
         L.Height = 124;
         L.Show(M);
     }
 }