Click here to Skip to main content
Licence 
First Posted 25 Oct 2003
Views 150,131
Bookmarked 36 times

Application.EnableVisualStyles Bug

By | 25 Oct 2003 | Article
Calling Application.EnableVisualStyles prevents images from an ImageList from appearing on Windows Common Controls

Introduction

Version 1.1 of the .NET framework introduced the method System.Windows.Forms.Application.EnableVisualStyles. Calling this method prior to the creation of any Forms or Controls, will cause Windows XP to apply a theme when rendering Windows Common Controls and many of the native .NET controls like Buttons and CheckBoxes.

Using .NET 1.0, MFC, WTL or VB6, it is necessary to include a manifest, either in the same directory as the executable, or compiled into it as a resource, in order to make use of Windows XP visual styles. While not overly difficult, providing a manifest for every executable one creates is tedious, and Visual Studio has very little tool support for helping you to do so.

The introduction of EnableVisualStyles to v1.1 of the framework is a nice addition because it allows WinForms applications to easily adopt the new look and feel of Windows XP styles.

The Bug

The problem is that there is bug in the implementation of EnableVisualStyles that interferes with Images stored in an ImageList component and Window Common Controls, like the TreeView or Toolbar classes. The effect is that if you call EnableVisualStyles, all of the images will disappear from your toolbars, treeviews and listviews.

To reproduce the bug:

  1. Create a WinForms application in VS.NET 2003
  2. Add a Toolbar and ImageList to Form1
  3. Add an image to the ImageList and a button to the Toolbar
  4. Assign the image to the button
  5. In the Main method add a call to Application.EnableVisualStyles just before the call to Application.Run

When you run the app on Windows XP, with a Visual Style active, there will be no image on the toolbar button.

Work Around

After some searching through Google groups I found some discussion of this issue and a work around that seems to work and hasn't caused any problems in my applications. (To read more about the work-around go here)

A call to Application.DoEvents just after EnableVisualStyles, seems to fix the problem. How or why, who knows. Most likely it causes some message that was sent via PostMessage to get flushed out to the correct place, before the creation of the first WinForms based window.

So the work around code looks like this:

void Main() 
{ 
  Application.EnableVisualStyles(); 
  Application.DoEvents(); 
  Application.Run(new Form1()); 
}

As of yet, I haven't seen any ill effect from the work-around and it seems to always work.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Don Kackman

Team Leader
Starkey Laboratories
United States United States

Member

The first computer program I ever wrote was in BASIC on a TRS-80 Model I and it looked something like:
10 PRINT "Don is cool"
20 GOTO 10
It only went downhill from there.
 
Hey look, I've got a blog

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralListViewItem's losing BackColor and ForeColor was fixed! PinmemberHideki Oga20:43 2 Sep '08  
GeneralAdditional information PinmemberCrafter7710:56 2 Nov '07  
GeneralGracias!! Pinmemberomtzr14:08 18 Sep '06  
GeneralThanks! PinmemberFred Fredburger19:45 21 Jul '06  
GeneralRe: Thanks! PinmemberFred Fredburger19:45 21 Jul '06  
GeneralRe: Thanks! PinmemberFred Fredburger19:46 21 Jul '06  
QuestionNew issue in .NET 2.0 with visual styles... Pinmemberxlouk4:51 3 Jul '06  
AnswerRe: New issue in .NET 2.0 with visual styles... Pinmemberxlouk1:22 11 Jul '06  
GeneralThanks PinmemberBikash Rai23:48 12 Dec '05  
GeneralSimple Button And Imagelist Pinmember.::CenoByte::.20:24 28 Jul '05  
GeneralA Different Solution to Missing Icons PinsussSmittyInPhilly4:41 29 Jun '05  

I am using Crystal Reports XI with Visual Studio .Net and came across the same symptom with the Crystal Web Viewer not showing icons on their toolbar when I built a web site using the Crystal Server Installation.
 
I started down this path since it was the only solution I found on line. It turned out not to be this issue at all.
 
When the new web site was installed, it was one of multiple web sites on the server. It was not the "Default Web Site" for IIS. The Crystal Server installation installed the needed virtual directory in the "Default Web Site" and not my web site that used the Crystal Viewer. A new virtual directory for crystalreportsviewer11 was generated in my web site and this cured the problem.
 
SmittyInPhilly

 
SmittyInPhilly
GeneralRe: A Different Solution to Missing Icons PinmemberBen Shemmeld18:29 21 Feb '06  
JokeRe: A Different Solution to Missing Icons PinmemberBen Shemmeld10:10 23 Feb '06  
GeneralRe: A Different Solution to Missing Icons Pinmembermliddekee11:07 20 Mar '06  
GeneralStill Buggy PinsussAnonymous15:20 22 May '05  
GeneralMonthCalendar bug when using XP Styles Pinmembercmaroto3:55 16 May '05  
GeneralRe: MonthCalendar bug when using XP Styles PinmemberDon Kackman8:11 16 May '05  
GeneralTry this Pinmemberhravn7:43 22 Feb '05  
General' System.Windows.Forms.Application.EnableVisualStyles() Pinmemberspratticus16:30 30 Nov '04  
GeneralWorks PinsussAnonymous18:44 3 Nov '04  
GeneralRe:Enable Visual Styles : solution PinsussAnonymous5:40 30 Nov '04  
GeneralEnableVisualStyles doesn't work Pinmemberafinnell12:33 20 Oct '04  
GeneralRe: EnableVisualStyles doesn't work PinmemberDon Kackman8:29 22 Oct '04  
GeneralRe: EnableVisualStyles doesn't work PinmemberThe_Mega_ZZTer5:21 22 Aug '07  
GeneralDon't be too haisty PinmemberRodgerB6:00 16 Aug '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120528.1 | Last Updated 26 Oct 2003
Article Copyright 2003 by Don Kackman
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid