假设 DomainUpDown控件 名为numericUpDown1
假设 文本框控件 名为textBox1
请注册numericUpDown1的ValueChanged事件
事件中的代码如下:
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
this.textBox1.Font = new Font(this.textBox1.Font.FontFamily, (float)this.numericUpDown1.Value);
}