Of course it is possible. I don’t know how to establish a connection between two automatic controls, so you yourself will write the code. But don’t worry, it’s not difficult.
, . , : ValueChanged. . :
void myNumericUpDown_ValueChanged(object sender, EventArgs e)
{
myTrackBar.Value = Convert.ToInt32(myNumericUpDown.Value);
}
void myTrackBar_ValueChanged(object sender, EventArgs e)
{
myNumericUpDown.Value = myTrackBar.Value;
}
, , ( ), .