I'm trying to change the splitter's backColor when user move it. and I have the following:
private void splitter1_SplitterMoving(object sender, System.Windows.Forms.SplitterEventArgs e)
{
this.splitter1.BackColor = System.Drawing.Color.Red;
}
However, the color doesn't change at all when this event fires. Is there something else I need to set for this to happen?
thanks
private void splitter1_SplitterMoving(object sender, System.Windows.Forms.SplitterEventArgs e)
{
this.splitter1.BackColor = System.Drawing.Color.Red;
}
However, the color doesn't change at all when this event fires. Is there something else I need to set for this to happen?
thanks