private void add(ref Grid grid, int column, int type)
 {
     Viewbox viewbox = new Viewbox()
     {
         Height = 100,
         Width = 100,
         Stretch = Stretch.UniformToFill,
         Child = fruit(type)
     };
     viewbox.SetValue(Grid.ColumnProperty, column);
     grid.Children.Add(viewbox);
 }