用C#编写文本框中字体大小随DomainUpDown中的值而改变

2024-12-01 01:50:24
推荐回答(1个)
回答1:

假设 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);
}