|
| To | Do this |
|---|---|
| Create a form. | Derive a class from System::Windows::Forms::Form. |
| Add controls to a form. | Drag controls from the Toolbox, and drop them onto the form. |
| Handle events. | Use the Properties editor to add an event handler. |
| Add a menu to a form. | Drag a MainMenu item onto the form, and add menu items using the graphical menu editor. |
| Add a context menu. | Drag a ContextMenu onto the form, in exactly the same way that you’d add a MainMenu. |
|