用C#编写文本框中字体大小随DomainUpDown中的值而改变
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);
}
假设 文本框控件 名为textBox1
请注册numericUpDown1的ValueChanged事件
事件中的代码如下:
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
this.textBox1.Font = new Font(this.textBox1.Font.FontFamily, (float)this.numericUpDown1.Value);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询