Nice GUI

  • Thread starter Thread starter =?iso-8859-1?q?Stefan_Sch=F6b?=
  • Start date Start date
?

=?iso-8859-1?q?Stefan_Sch=F6b?=

Hi
How can i create a GUI like this one:
http://www.kynosarges.de/NDoc.html

My .NET Tools always looks like old NT-Applications except the
Menustrip and the statusbar.

Is there perhaps a good tutorial to build nice GUI's?
Thx a lot for each information ;)
Greetz
 
Are you doing C# or VB? Do you have XP Visual Styles enabled? In VB, this
is an option in the Project Properties. In C#, you have to add this to the
main sub:

Application.EnableVisualStyles(); //enable xp style

This makes it show your app like an XP app (or Vista, if you're running
that), with rounded corners and everything.

Robin S.
 
I use the Infragistics UI controls since they can be "styled" by a
graphic designer and have the style imported into the project.
 
I use VB.NET

and yes, VisualStyles are enabled! I think I will take a look at the
Infragistics UI controls!
Thx for this Information!
 
Back
Top