Can you help me?
C#
2
Posts
2
Posters
0
Views
1
Watching
-
HI, I am new to c# programming. How can I get a simple menu system? I am using visual c# 2005. I only want a print, new document, open docunment, save document and help button, how can I do this. Thank you in advance.
1. Add ToolStripContainer (from Toolbox) to your form. 2. Set toolStripContainer.Dock = All. 3. Add MenuStrip (from Toolbox) to the top of the toolStripContainer. 4. Select menuStrip and type captions for your menu items. 5. Select menu item and add handler to its Click event. 6. Repeat step 5 for all menu items.