//Fontオブジェクトを作成するには
private void Form1_Load(object sender, EventArgs e)
{
label1.Font = new Font("MS 明朝", 14);
label2.Font = new Font("Arial", 9, FontStyle.Italic);
label3.Font = new Font("Century", 11,
FontStyle.Bold | FontStyle.Underline);
}