Click here to Skip to main content
15,888,190 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to make a fixed sized tabs of a web browser using C#
Posted
Comments
[no name] 5-Aug-11 8:58am    
What tabs? The web browser, such as IE?

You can't.
Yvan Rodrigues 5-Aug-11 9:35am    
Please elaborate on what you are trying to accomplish.
siemawe 6-Aug-11 8:17am    
how do I make my c# web browser tabs to have the same fixed length?
Praveen Kullu 7-Aug-11 5:42am    
You are creating your own web browser with multiple tabs? I think i already answered your question below. Mark it as answered by accepting the solution if this is what you wanted.

1 solution

If you are developing an application (Winforms) and using tabcontrol in your form, then setting tab size to fixed can be done by setting SizeMode = fixed in its properties.

or

C#
private void Form1_load(...)
{
tabControl1.SizeMode = TabSizeMode.Fixed;
}
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900