What is visual inheritance in VB.NET?You can create a main or base form with some basic settings and then inherit a form from it and extend with more features while preserving basic settings.
With Visual inheritance, we can reuse the windows form and extend the functionality in multiple forms.
To implement Visual Inheritance, we create a windows Form (base form) and inherit forms from the base form.
|