111,094
社区成员




FontDialog fd = new FontDialog();
DialogResult dr = fd.ShowDialog();
if (dr == DialogResult.OK)
{
this.Font = fd.Font;
this.toolStrip1.Font = fd.Font;
this.toolStrip2.Font = fd.Font;
}