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

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

            dlg.Text = title;

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