Set backcolors to white when running as Release executable

This commit is contained in:
Jsj
2008-01-03 18:45:31 +00:00
parent 9a7b8ab75d
commit 2a482b3f4f
2 changed files with 21 additions and 2 deletions

View File

@@ -205,6 +205,11 @@ namespace Volian.Controls.Library
}
Application.DoEvents();
pg.ItemSelected = myItem; // Select the item
#if (DEBUG)
pg.MyTabPanel.MyPanel.BackColor = SystemColors.Control;
#else
pg.MyTabPanel.MyPanel.BackColor = Color.White;
#endif
return pg;
}
internal void RemoveItem(DisplayTabItem myItem)