mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-26 04:51:12 +00:00
start the Tree expanded
svn path=/trunk/gtk-sharp/; revision=19567
This commit is contained in:
parent
7ade209999
commit
2a638aa84e
|
@ -56,6 +56,10 @@ namespace GtkDemo
|
|||
scrolledWindow.Add (treeView);
|
||||
|
||||
// expand all rows after the treeview widget has been realized
|
||||
for (int i = 0; i < 12; i++)
|
||||
{
|
||||
treeView.ExpandRow (new TreePath (i.ToString ()), false);
|
||||
}
|
||||
|
||||
window.SetDefaultSize (650, 400);
|
||||
|
||||
|
|
Loading…
Reference in a new issue