Add controls in the correct order for Dock.Fill to work correctly.

svn path=/trunk/winforms/; revision=87724
This commit is contained in:
Jonathan Pobst 2007-10-17 22:33:15 +00:00
Родитель 890fcc0e1d
Коммит f5ce5f7d51
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -41,7 +41,6 @@ public class TreeViewTest : Form {
tool_bar.ButtonClick += new ToolBarButtonClickEventHandler (ToolBarButtonClick);
Controls.Add (tool_bar);
tree_view = new TreeView ();
tree_view.Anchor = AnchorStyles.Top | AnchorStyles.Left;
@ -64,6 +63,7 @@ public class TreeViewTest : Form {
Controls.Add (tree_view);
Controls.Add (tool_bar);
tree_view.Nodes [0].Expand ();
/*