Reputation: 1268
I am trying to get C#'s form to have a contextmenu at the top of the form to where options already show up on load and you can click it to get more of a dropdown, how would I do this? Thanks
Upvotes: 1
Views: 2647
Reputation: 47530
Hope these help
http://www.codeproject.com/KB/toolbars/customtoolstrip.aspx
http://www.codeproject.com/KB/miscctrl/MfcWinFormsOff.aspx
Upvotes: 2
Reputation: 14781
I guess you are asking for a MenuStrip
control:
http://en.csharp-online.net/Create_and_configure_a_MenuStrip
http://msdn.microsoft.com/en-us/library/system.windows.forms.menustrip.aspx
Upvotes: 1