Hi Eric,
Here is the requested code sample that adds two custom menu items with hosted button:
NButton
btn1 = new NButton();
btn1.Text = "Button 1";NControlHostCommand controlHost1 = new NControlHostCommand();
controlHost1.SetControl(btn1);
nDockingToolbar1.Commands.Add(controlHost1);
NButton btn2 = new NButton();
btn2.Text = "Button 2";
NControlHostCommand controlHost2 = new NControlHostCommand();
controlHost2.SetControl(btn2);
nDockingToolbar1.Commands.Add(controlHost2);
Best Regards,
Nevron Support Team