Answers:
字体本身的粗体属性是只读的,而文本框的实际字体属性不是。您可以将文本框的字体更改为粗体,如下所示:
textBox1.Font = new Font(textBox1.Font, FontStyle.Bold);
然后再次返回:
textBox1.Font = new Font(textBox1.Font, FontStyle.Regular);
根据您的应用程序,您可能需要在有关文本框的文本更改或焦点/未焦点上使用该字体分配。
这是它的外观的一个快速示例(空格式,只有一个文本框。当文本读取为“粗体”时,字体变为粗体,不区分大小写):
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
RegisterEvents();
}
private void RegisterEvents()
{
_tboTest.TextChanged += new EventHandler(TboTest_TextChanged);
}
private void TboTest_TextChanged(object sender, EventArgs e)
{
// Change the text to bold on specified condition
if (_tboTest.Text.Equals("Bold", StringComparison.OrdinalIgnoreCase))
{
_tboTest.Font = new Font(_tboTest.Font, FontStyle.Bold);
}
else
{
_tboTest.Font = new Font(_tboTest.Font, FontStyle.Regular);
}
}
}
txtText.Font = new Font("Segoe UI", 8,FontStyle.Bold);
//Font(Font Name,Font Size,Font.Style)