views:

21

answers:

1

I have multiple ToolStrips with buttons on my form. I'd like to move some buttons from one ToolStrip to another. However, the Visual Studio IDE is not allowing me to drag the buttons off of a ToolStrip. I could go and edit the designer file for the form, but I try to avoid that as much as possible. So is there some way to do this through the IDE?

+2  A: 

Yes, no problem. Click on the control, Ctrl+X to cut it to the clipboard. Click on the 2nd toolstrip, Ctrl+V to paste it from the clipboard.

Hans Passant
Ah ha! Works great. Thanks a lot!
Eric Anastas