public BaseFrameXF()
 {
     ThisDraw = new SKCanvasView();
     ThisDraw.PaintSurface += ThisDraw_PaintSurface;
     SizeChanged           += BaseFrameXF_SizeChanged;
     ThisFrame              = new FrameGraphics(this);
     HorizontalOptions      = LayoutOptions.Start;
     FirstSetUp();
 }
 public BaseFrameWPF()
 {
     ThisDraw = new SKElement();
     ThisDraw.PaintSurface += ThisDraw_PaintSurface;
     SizeChanged           += BaseFrameWPF_SizeChanged;
     ThisFrame              = new FrameGraphics(this);
     Text = ","; // default to that which will translate to blank.  since there seemed to be a weird problem and not sure why.
     HorizontalAlignment = HorizontalAlignment.Left;
     FirstSetUp();
 }