我在Windows应用程序中使用metro textbox
和metro combo box
。运行应用程序时,metro textbox
和metro combo box
的字体系列看起来不同。但我想将所有控制字体系列更改为“ARIAL”。
有任何建议或参考?
答案 0 :(得分:0)
如果您只想将字体系列更改为Arial到ALL CONTROLS,这可能有所帮助(您可以在Load ou Shown事件中执行此操作:
private void Form1_Shown(object sender, EventArgs e)
{
ChangeFontFamily(this);
}
private void ChangeFontFamily(Form _form)
{
for (int i = 0; i < _form.Controls.Count; i++)
{
_form.Controls[i].Font = new Font("Arial", _form.Controls[i].Font.Size, _form.Controls[i].Font.Style);
}
}