[Gtk-sharp-list] TreeView

Arx Henrique arxcruz@yahoo.com.br
Sat, 07 Aug 2004 01:58:48 -0300


Hi all,

one more time, sorry my english :)

I like to know how I do it correctly:

I create a treeview and put in a treeviewcolumn like followed:

ListStore list = new ListStore (typeof (string)); //this typeof is
correct ?
//populate list
....

TreeView tree = new TreeView (list);
TreeViewColumn test = new TreeViewColumn ("Test", GtkCellRendererToggle,
2);
tree.AppendColumn(test);
...


they works correctly, but when i click on toggle they not mark, or
better they don't do anything, only select the row.