Apply a theme to a dot net application

G

glenhong

Hi,

I want to know if it is possible to apply a custom made skin/xp theme
to an individual dot net application.

What I am trying to do is create a new skin\xp theme (e.g. Different
style scroll bars) and then get my dot net application to use this.
This way no other applications are compromised.

Does anyone know if this is possible and if so how?

Thanks
Glen
 
A

Aloha

Hi, some controls automatically support visual styles but some of them
don't. Button and other derived controls have FlatStyle property. Set the
property to System. After that set application to start from Sub Main and in
the sub write below lines at first.

Application.EnableVisualStyles
Application.DoEvents

Then compile. By the way application supports XP theme.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top