How to change size and image in TabControl
I want to change size of TabPage in my TabControl , each tab should be in one line without scroll. the second question is about how to change Text into Image like here (Please, ignore the green line): edit. I used Winforms. Ad 1. There is no way to adjust width of tab pages to fit width you want automatically, so you just have to do some maths to achieve this. Ad 2. First you have to create an ImageList object, which you will then pass to your TabControl : ImageList il = new ImageList(); il.Images.Add("your_graphics_name", Image.FromFile(@"C:\Graphics\example.png")); (...) yourTabControl