Esempio n. 1
0
 /// <summary>
 /// Sets the text for the specified control in multithreading circumstances.
 /// </summary>
 /// <param name="control"></param>
 /// <param name="text"></param>
 public static void SetControlEnable(Control control, bool val)
 {
     if (control != null)
     {
         if (control.InvokeRequired)
         {
             SetControlEnableSafe scts = new SetControlEnableSafe(SetControlEnable);
             control.Invoke(scts, new Object[] { control, val });
         }
         else
         {
             control.Enabled = val;
         }
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Sets the text for the specified control in multithreading circumstances.
 /// </summary>
 /// <param name="control"></param>
 /// <param name="text"></param>
 public static void SetControlEnable(Control control, bool val)
 {
     if (control != null)
         {
             if (control.InvokeRequired)
             {
                 SetControlEnableSafe scts = new SetControlEnableSafe(SetControlEnable);
                 control.Invoke(scts, new Object[] { control, val });
             }
             else
             {
                 control.Enabled = val;
             }
         }
 }