Exemplo n.º 1
0
 void PaintTree()
 {
     InOrderTxt.Text = _tree.Sorter();
     if (_tree == null)
     {
         return;
     }
     pictureBox1.Image = _tree.Draw();
 }