示例#1
0
 public static double GetWidth(RendererBase source)
 {
     return((double)source.GetValue(WidthProperty));
 }
示例#2
0
 public static WriteableBitmap GetBitmap(RendererBase source)
 {
     return((WriteableBitmap)source.GetValue(BitmapProperty));
 }
示例#3
0
 public static ICore GetCore(RendererBase source)
 {
     return((ICore)source.GetValue(CoreProperty));
 }
示例#4
0
 public static Color GetColor(RendererBase source)
 {
     return((Color)source.GetValue(ColorProperty));
 }
示例#5
0
 public static Rect GetViewbox(RendererBase source)
 {
     return((Rect)source.GetValue(ViewboxProperty));
 }
示例#6
0
 public static double GetHeight(RendererBase source)
 {
     return((double)source.GetValue(HeightProperty));
 }