public static void Drawing(FoxDraw foxDraw, int x, int y)
 {
     foxDraw.StrokeColor(Colors.Blue);
     foxDraw.DrawLine(x, y, foxDraw.Canvas.Width / 2, foxDraw.Canvas.Height / 2);
 }