public static void SetBorderColor(CsTextbox target, Brush value)
 {
     target.BorderColor = value;
 }
 public static void SetFontSize(CsTextbox target, Double value)
 {
     target.FontSize = value;
 }
 public static Brush GetBorderColor(CsTextbox target)
 {
     return(target.BorderColor);
 }
 public static Double GetFontSize(CsTextbox target)
 {
     return(target.FontSize);
 }