I am using Delphi XE3 with SP1. I have created a FireMonkey Desktop Application and dropped a TSpinBox and a TTrackBar on the main form. I have now connected the "Value" property of the TSpinBox and the TTrackBar using Visual Livebindings. The IDE has automatically created a "TLinkControlToProperty" to connect them. When I move the slider on the TTrackBar, the values in the TSpinBox change. But when I change the value in the TSpinBox, the value of the TTrackBar does not get updated.
How can I change this to a bidirectional connection using LiveBindings? My aim is to change the "Value" property of the TTrackBar, when the "Value" of the TSpinBox changes. Furthermore, I am interested in a solution that does not use the "OnChange" event of the "TSpinBox". Is this possible without deriving a descendant of "TSpinBox"?