You can use intermediate variables as shown below:
public double v{set;get;} public int v100 { set { v = value / 100D; } get { return (int)(v* 100D); } }
and dazzle them with the controls.
trackBar.DataBindings.Add(new Binding("Value", PtParams, "v100")); textBox.DataBindings.Add(new Binding("Text", PtParams, "v"));
source share