예제 #1
0
        public static bool ShowDialog(String title, WorkingEventHandler handler)
        {
            WorkingDialog dlg = new WorkingDialog(handler);
            dlg.Text = title;

            return dlg.ShowDialog() == DialogResult.OK;
        }
예제 #2
0
        public static bool ShowDialog(String title, WorkingEventHandler handler)
        {
            WorkingDialog dlg = new WorkingDialog(handler);

            dlg.Text = title;

            return(dlg.ShowDialog() == DialogResult.OK);
        }
예제 #3
0
 internal WorkingEventArgs(WorkingDialog dlg)
 {
     Form      = dlg;
     FirstTick = Environment.TickCount;
 }
예제 #4
0
 internal WorkingEventArgs(WorkingDialog dlg)
 {
     Form = dlg;
     FirstTick = Environment.TickCount;
 }