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

Re: Nice GUI by RobinS

RobinS
Thu Mar 01 12:35:21 CST 2007

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.
------------------------------------------------------
"Stefan Schöb" <opendix@gmail.com> wrote in message
news:1172740235.255056.218210@8g2000cwh.googlegroups.com...
> 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
>



Re: Nice GUI by Bryan

Bryan
Fri Mar 02 16:09:51 CST 2007

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

--
Bryan Phillips
MCSD, MCDBA, MCSE
Blog: http://bphillips76.spaces.live.com



"Stefan Schöb" <opendix@gmail.com> wrote in message
news:1172740235.255056.218210@8g2000cwh.googlegroups.com:

> 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


Re: Nice GUI by opendix

opendix
Thu Apr 12 08:26:39 CDT 2007

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!