Having problems seeing your design when running you windows forms app on XP? Looks good in VS design, but colorless and dull in runtime?
Then you need to make this fix to the main method:
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
// Calling DoEvents after the above method call seems to fix this issue
Application.DoEvents();
Application.Run(new Form1());
}
// Lazze
No comments:
Post a Comment