[Gtk-sharp-list] Help with GTK sharp

Vladimir Giszpenc vladimir.giszpenc at gmail.com
Mon Feb 11 12:34:22 EST 2008


Dan,

Here is how I set a default:

			ListStore store = new ListStore(typeof (string));
			this.cboLogLevel.Model = store;
			TreeIter iter = store.AppendValues(LogLevel.Debug.ToString());
			this.cboLogLevel.SetActiveIter(iter);

Vlad


More information about the Gtk-sharp-list mailing list