I am converting an app from Java to C#.NET. In the Java app I have a
JTabbedPane tabPane=new JTabbedPane(TabbedPane.BOTTOM);
which places the tabs at the bottom of the content area and it looks great with the XP Look and Feel. When I try and write simmilar code in C#.NET with the TabControl
TabControl tabControl1=new TabControl();
tabControl1.Alignment=TabAlignment.Bottom;
//Add TabPages etc..
But when I run the C#.NET version the tabs are put on the bottom of the content area but are still pointed up as if they were on the top. How can I make them point the right way like they do in java? Did Java really do a better job at the Microsoft look than Microsoft did?