I’m using a System.Windows.Forms.TabControl. I’m using it for a touch screen interface, and when there are a lot of tabs in the TabControl, the scroll arrows on the right side of the top of the TabControl are too small to touch. How can I resize them to make them larger?
edit: I have Multiline set to false, to enable more screen space for my application. If I need to change this back to true, please let me know!
Multiline would probably be the best bet here. Alternatively, you could make two buttons of your own, size them to the desired size and bind them to the following:
Left (or down in pages):
Right (or up):
I just utilized two buttons and I can page accordingly and control their style.