C++ Builder XE4
関連
- C++ Builder > TTrackBar > 値変更中にOnChange()が繰返し実行される > 変更終了の検知案
- C++ Builder > TTrackBar と TEdit > 値の同期 > TTrackBar:OnChange | TEdit:OnExit
LiveBinding
LiveBinding で二つのTTrackBarのPositionを同期できるか?
LiveBindingデザイナにおいてPosition同士を連結できなかった。
https://stackoverflow.com/questions/36341600/syncronizing-tmediaplayer-position-and-ttrackbar-position-via-livebindings
においてTMediaPlayer.PositionとTTrackBar.Positionの同期に関する質問がある。
以下の提案をしているが、TTimer処理でチェックし続けるというのは良いのかどうか。
So best suggestion that I can give you is for you to place a timer on your form and then check media player position in certain intervals to update your TrackBar. I believe one second interval would is more than enough but you can make it shorter if you will.