Before, I could do:
Combo.Text = "new text";
but now, I have to do:
Gtk.TreeIter iter;
Combo.GetActiveIter(out iter);
Combo.Model.SetValue(iter, 1, "new text");
now of course these two things essentially do something different to get the same end result on the display, but it just seems like there could be such easier ways to manipulate the information within a Combo box!
For example, ComboBoxItem, there, this contains all the information required.
ComboBoxItem item = Combo.Items.Add();
item.Text = "new text";
item.Tag = myObject;
or something... Does anyone follow my drift?
Philippe Durand
Galaxium Messenger
http://galaxium.sourceforge.net/
_______________________________________________ Gtk-sharp-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/gtk-sharp-list
