public void PaintTree(ExpressionTree _tree) { if (_tree == null) { return; } treePictureBox.Image = _tree.Draw(); }