G
Guest
What does one need to add to the app.config file to have my controls rendered in the windows xp look and feel?
Thanks,
Jeff
Thanks,
Jeff
* "=?Utf-8?B?SmVmZg==?= said:What does one need to add to the app.config file to have my controls rendered in the windows xp look and feel?
Yep, this will do only with .Net 1.1, but if you use 1.0 or you want yourIn the app's 'Main' procedure, add this code:
\\\
Application.EnableVisualStyles()
Application.DoEvents()
Application.Run(New Form1())
///
Set the controls' 'FlatStyle' property to 'System' (where available).
--
* "=?Utf-8?B?QW5uZQ==?= said:The manifest file works only for terminals with XP as their OS. What
if I am to run my application in lower versions of Windows? Is there an
ocx that can convert my controls to an XP-looking stuff? Besides if you
are going to use the manifest file, there would be some problem on
option buttons.