字体对话框(fontDialog控件)

 题目要求:

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


输入代码:

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

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

        private void button1_Click(object sender, EventArgs e)
        {
            fontDialog1.ShowColor = true;
            fontDialog1.ShowApply = true;
            fontDialog1.ShowDialog();
            label1.Font = fontDialog1.Font;
            label1.ForeColor = fontDialog1.Color;
        }
    }
}


运行截图:

字体对话框(fontDialog控件)_第1张图片


你可能感兴趣的:(.net学习笔记,c#,布局,应用,控件,对话框)