private void PopulateList()
 {
     foreach (var firstDice in _diceList !)
     {
         StandardDiceXF thisGraphics = new StandardDiceXF(); // this does the bindings already as well
         thisGraphics.SendDiceInfo(firstDice);               //this has to be done too.
         DiceBindings(thisGraphics, firstDice);
         _thisStack !.Children.Add(thisGraphics);
     }
 }