Click here to Skip to main content
15,903,175 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi!
I want to create an application where the controls are styled as in Vista/Xp panel. How can I do that?
Please point me to some examples and/or tutorials.

Thanks in advance!
Posted
Updated 21-Apr-11 12:39pm
v2

What's the point in reposting this daily? You already have 2 threads on this, both of which were answered:


  1. how to obtain this design?[^]
  2. How to use xp panel style in VC#?[^]


Note that you've got to start with something. There's no quick solution here where someone gives you a class where you can just do new class().ShowSuperUI(). Doesn't work that way, not at all.
 
Share this answer
 
Comments
Sandeep Mewara 22-Apr-11 2:10am    
5!
:)
guendouz bachir 22-Apr-11 5:42am    
ok i want just an exemple
You need to install Vista/Xp on your machine and the theme should be set to Vista/Xp.Change the FlatStyle property of the control to System.In Main() method
MSIL
static void Main()
{
  Application.EnableVisualStyles();
  Application.DoEvents();
  Application. Run(new Form1());

}
 
Share this answer
 
v2
Comments
guendouz bachir 25-Apr-11 7:48am    
where can i find this theme before install

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