Monodoc tells me "AppendItem" is deprecated, but it doesn't tell me what to use instead.
+1
A:
See Gtk+ documentation. Do you have an "insert" function available?
Edit: add code sample from jpobst
myToolBar.Insert (myToolItem, myToolBar.NItems);
Matthew Talbert
2009-12-30 22:10:13
And yes, I realize that you're using C#, and I pointed to the C docs
Matthew Talbert
2009-12-30 22:10:33
I do have the insert function available, but I'd rather just append the buttons, so that I don't have to worry about indices.
Matthew
2009-12-30 22:39:11
myToolBar.Insert (myToolItem, myToolBar.NItems);
jpobst
2009-12-30 23:12:35