numericUpDown1&trackBar1应用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了numericUpDown1&trackBar1应用相关的知识,希望对你有一定的参考价值。
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
this.trackBar1.Value = (int)numericUpDown1.Value;
}
private void trackBar1_Scroll(object sender, EventArgs e)
{
this.numericUpDown1.Value = trackBar1.Value;
}
以上是关于numericUpDown1&trackBar1应用的主要内容,如果未能解决你的问题,请参考以下文章