This commit is contained in:
Jsj 2008-04-25 18:17:26 +00:00
parent 1803f315c5
commit 26de18fb28
2 changed files with 4 additions and 1 deletions

View File

@ -337,7 +337,6 @@ namespace Volian.Controls.Library
} }
Application.DoEvents(); Application.DoEvents();
pg.SelectedItemInfo = myItemInfo; // Select the item pg.SelectedItemInfo = myItemInfo; // Select the item
pg.MyStepTabPanel.MyStepPanel.BackColor = SystemColors.Control;
return pg; return pg;
} }
/// <summary> /// <summary>

View File

@ -191,6 +191,8 @@ namespace Volian.Controls.Library
#if(DEBUG) #if(DEBUG)
this.Paint += new PaintEventHandler(StepPanel_Paint); this.Paint += new PaintEventHandler(StepPanel_Paint);
this.DoubleClick += new EventHandler(StepPanel_DoubleClick); // Toggles Vertical lines on and off this.DoubleClick += new EventHandler(StepPanel_DoubleClick); // Toggles Vertical lines on and off
#else
this.BackColor = Color.White;
#endif #endif
this.AutoScroll = true; this.AutoScroll = true;
} }
@ -202,6 +204,8 @@ namespace Volian.Controls.Library
#if(DEBUG) #if(DEBUG)
this.Paint += new PaintEventHandler(StepPanel_Paint); // Toggles Vertical lines on and off this.Paint += new PaintEventHandler(StepPanel_Paint); // Toggles Vertical lines on and off
this.DoubleClick += new EventHandler(StepPanel_DoubleClick); this.DoubleClick += new EventHandler(StepPanel_DoubleClick);
#else
this.BackColor = Color.White;
#endif #endif
this.AutoScroll = true; this.AutoScroll = true;
} }