I have a multi-form C# application, and most of this forms have the same design like (custom borders , custom control box ...) and they programmed. So my question, how can I create a template form instead of copying the design and code? Or in other words, how to make all forms inherit the design and programming from the main form?
I expected that I could program and design one form and have others inherit the same design and programming.
Right click on your solution > add > new item > windows form > inherited form > select the form you want to inherit from it.