如何将跟踪栏的锚点设置为从特定索引开始?我的轨迹栏从 0 到 10,它在 Form1 中。在 Form1 的构造函数中,我想将锚设置到正确的位置,这由对象的属性决定:
public EditRectangle(FormRectangle p)
{
InitializeComponent();
this.p = p;
textBox1.Text = p.GetMass().ToString();
textBox2.Text = p.GetHeight().ToString();
textBox3.Text = p.GetWidth().ToString();
// SET TRACKBAR'S INDEX TO THE RIGHT PLACE BY p.GetElasticity()
}
我该怎么做?