Example #1
0
 private void CallBack(string message)
 {
     this.Invoke(
         (EventHandler)
         (delegate
     {
         AlertWindows asd = new AlertWindows();
         asd.Show(message);
     }));
 }
Example #2
0
        private void CallBack(string message)
        {
            this.Invoke(
                            (EventHandler)
                            (delegate
                            {
                                AlertWindows asd = new AlertWindows();
                                asd.Show(message);

                            }));
        }
Example #3
0
 private void button1_Click(object sender, EventArgs e)
 {
     AlertWindows asd = new AlertWindows();
     asd.Show("test");
 }
Example #4
0
        private void button1_Click(object sender, EventArgs e)
        {
            AlertWindows asd = new AlertWindows();

            asd.Show("test");
        }