Explain how to create windows forms using visual inheritance. Steps:
1. Create a windows form called the basewindow 2. Add a menu bar on this form 3. Right click on the solution explorer and select add new item 4. Select inherited form 5. From the dialogue box choose basewindow form. 6. Name the new form as the childform 7. Now the new childform would have a menu from the baseform. 8. We can place as many controls on baseform as we want to.
|