Пример #1
0
 public static void SetWidth(RendererBase source, double value)
 {
     source.SetValue(WidthProperty, value);
 }
Пример #2
0
 public static void SetBitmap(RendererBase source, WriteableBitmap value)
 {
     source.SetValue(BitmapProperty, value);
 }
Пример #3
0
 public static double GetWidth(RendererBase source)
 {
     return((double)source.GetValue(WidthProperty));
 }
Пример #4
0
 public static void SetCore(RendererBase source, ICore value)
 {
     source.SetValue(CoreProperty, value);
 }
Пример #5
0
 public static WriteableBitmap GetBitmap(RendererBase source)
 {
     return((WriteableBitmap)source.GetValue(BitmapProperty));
 }
Пример #6
0
 public static void SetColor(RendererBase source, Color value)
 {
     source.SetValue(ColorProperty, value);
 }
Пример #7
0
 public static ICore GetCore(RendererBase source)
 {
     return((ICore)source.GetValue(CoreProperty));
 }
Пример #8
0
 public static Color GetColor(RendererBase source)
 {
     return((Color)source.GetValue(ColorProperty));
 }
Пример #9
0
 protected static void SetViewbox(RendererBase source, Rect value)
 {
     source.SetValue(ViewboxProperty, value);
 }
Пример #10
0
 public static Rect GetViewbox(RendererBase source)
 {
     return((Rect)source.GetValue(ViewboxProperty));
 }
Пример #11
0
 public static void SetHeight(RendererBase source, double value)
 {
     source.SetValue(HeightProperty, value);
 }
Пример #12
0
 public static double GetHeight(RendererBase source)
 {
     return((double)source.GetValue(HeightProperty));
 }