public static void UpdateBorderColor(this Border nativeControl, Color backgroundColor)
 {
   nativeControl.Background = backgroundColor.ToBrush();
 }
 public static void UpdateBackgroundColor(this Rectangle nativeControl, Color backgroundColor)
 {
   nativeControl.Fill = backgroundColor.ToBrush();
 }