I have an application that I want to have 2 optional interfaces for: Touchscreen and Non-Touchscreen.
I obviously can make 2 separate forms but there is a lot of underlying code that would have to be duplicated anytime there is a change to it. All the controls are the same, they just have different sizes and positions. I was thinking of putting in 2 InitializeComponent methods but then I would have no way of designing both interfaces with visual studio.
Hoping someone else has any idea.