G
Guest
I am developing a C# application on HP iPAQ, Pocket PC 2003. I want to use a
TrackBar. I do not see in the class definition support for the compact
framework to handle any of the events that indicate the "Value" property has
changed (ie no scroll or click or mouse up/down events). I found a sample
that said to do:
this.mtrackBarVolume.Scroll += new
System.EventHandler(this.trackBarVolume_Scroll);
and then make a method:
private void trackBarVolume_Scroll(object sender, System.EventArgs e)
{
// store the trackbar value
mCurVol = trackBar1.Value;
}
but this is not supported by compact framework. Any suggestions are
appreciated
TrackBar. I do not see in the class definition support for the compact
framework to handle any of the events that indicate the "Value" property has
changed (ie no scroll or click or mouse up/down events). I found a sample
that said to do:
this.mtrackBarVolume.Scroll += new
System.EventHandler(this.trackBarVolume_Scroll);
and then make a method:
private void trackBarVolume_Scroll(object sender, System.EventArgs e)
{
// store the trackbar value
mCurVol = trackBar1.Value;
}
but this is not supported by compact framework. Any suggestions are
appreciated