Beispiel #1
0
 public LoadingForm(Form parent, LoadingFormUIMrg uiM)
 {
     this.InitializeComponent();
     base.Location               = new System.Drawing.Point(parent.Location.X + ((parent.Width - base.Width) >> 1), parent.Location.Y + ((parent.Height - base.Height) >> 1));
     this.m_ParentForm           = parent;
     this.m_Timer                = new System.Windows.Forms.Timer();
     this.m_Timer.Tick          += new EventHandler(this.OnTimer);
     this.m_Timer.Interval       = 0x3e8;
     this.M_LoadingFormUIManager = uiM;
 }
Beispiel #2
0
 public ProjectUImrg(MainFormUIMrg mfU)
 {
     this.m_ProcessBarManager = new LoadingFormUIMrg(mfU.MainForm);
     this.m_MainFormUIManager = mfU;
 }