public BufferingForm(Simulation Sim, bool StartFromBeginning, long NumberGenerations, MetroFramework.MetroThemeStyle Theme, MetroFramework.MetroColorStyle ColorStyle)
 {
     InitializeComponent();
     this.Sim = Sim;
     this.StartFromBeginning = StartFromBeginning;
     this.NumberGenerations = NumberGenerations;
     this.BSim = new SimpleBufferedSimulation((int)NumberGenerations);
     this.SetThemeStyle(Theme, ColorStyle);
 }
 public BufferViewer(SimpleBufferedSimulation BSim)
 {
     InitializeComponent();
     this.BSim = BSim;
 }