Search code examples
c#trackbar

Coordination of two trackBars


I have two trackBars and I want to that when I move one of them, the other one also is moved in the same time.

If it is possible, how can I do that?


Solution

  • Subscribe to the ValueChanged event of the First trackbar. On the trigger of thatevent, update the second track bar with the corresponding value.