C#实验十1.4

【实验4】字体对话框(教材P180

创建一个如下的窗体,并在窗体上放置一个标签、一个按钮、一个fontDialog控件。标签内容改为“烟台大学”。实现功能:1)程序运行时,单击打开字体对话框按钮,可选择字体,并以所选字体作为标签字体。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.fontDialog1.ShowDialog();
            this.label1.Font = fontDialog1.Font;

        }

       
    }
}


C#实验十1.4_第1张图片

你可能感兴趣的:(C#实验十1.4)