示例#1
0
        public void Init(Point location, common.forms.baseSlashForm form)
        {
            mLocation = location;
            mSplash   = (form == null ? new common.forms.baseSlashForm() : form);
            Thread t = new Thread(new ThreadStart(workerThread));

            t.IsBackground = true;
            t.SetApartmentState(ApartmentState.STA);
            t.Start();
        }
示例#2
0
 public PleaseWait(Point location, common.forms.baseSlashForm form)
 {
     Init(location, form);
 }