views:

49

answers:

1

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
And yes, I realize that you're using C#, and I pointed to the C docs
Matthew Talbert
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
myToolBar.Insert (myToolItem, myToolBar.NItems);
jpobst