Track Bar Only fire event on final value not ever time value changes

后端 未结 7 1256
鱼传尺愫
鱼传尺愫 2021-01-05 10:18

I am working on a pretty basic C# visual studio forms application but am having some issue getting the track bar to act as I want it to so hoping someone in the community mi

7条回答
  •  伪装坚强ぢ
    2021-01-05 11:05

    A user could also move the track bar multiple times in a short period of time, or click on the track multiple times to increment the thumb over instead of dragging the thumb. All being additional cases where the value that registers at the end of a "thumb move" is not really the final value your user desires.

    Sounds like you need a button to confirm the change, which would then capture the current value of the trackbar and send it off to your devices.

提交回复
热议问题