This commit is contained in:
parent
1803f315c5
commit
26de18fb28
@ -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>
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user