public SchaakbordScherm()
 {
     // Initialisatie van het Form
     schaakSpel = new SchaakSpel(true, this);
     UpdateScherm();
     VoegKnoppenToe();
     VoegControlsToe();
     InitializeComponent();
 }
 static public void UpdateSchaakspel(Graphics gfx, SchaakSpel spel)
 {
     TekenBord(gfx, spel.Bord);
     TekenStatusen(gfx, spel.LoopLocaties, spel.SlaanLocaties, spel.HuidigeSpeler, spel.speler1Wit, spel.GeselecteerdeLocatie);
     TekenSpeelStukken(gfx, spel.Bord);
 }