BoulderBum
Programmer
I'm trying to bind a TrackBar to an entity object of mine:
It seems simple enough, and the TrackBar does indeed pick up the value of "Quality" when the DataBinding is first set. Unfortunately, changing the value of the TrackBar doesn't change the value of "Quality" for some reason. If I bind to a TextBox, on the other hand, everything works well.
Why won't the TrackBar binding work?
Code:
myBar.DataBindings.Add( "Value", imgConvData, "Quality" );
It seems simple enough, and the TrackBar does indeed pick up the value of "Quality" when the DataBinding is first set. Unfortunately, changing the value of the TrackBar doesn't change the value of "Quality" for some reason. If I bind to a TextBox, on the other hand, everything works well.
Why won't the TrackBar binding work?