Exemple #1
0
 public static void SetValue(Control ctrl, object value)
 {
     try
     { CrossThreadUI.SetPropertyValue(ctrl, "Value", value); }
     catch { throw; }
 }
Exemple #2
0
 public static void SetChecked(Control ctrl, bool value)
 {
     try
     { CrossThreadUI.SetPropertyValue(ctrl, "Checked", value); }
     catch { throw; }
 }