您的位置:首页 > 编程语言 > C#

C#—实验9.6和9.7

2016-06-02 13:44 453 查看
/*
* (1)单击“颜色”按钮,打开颜色对话框,将选择的颜色作为窗体背景色;
* (2)单击“字体”按钮,打开字体对话框,将选择的字体作为标签字体。
*/
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

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

private void Form1_Load(object sender, EventArgs e)
{
button1.Text = "窗体颜色";
button2.Text = "字体";
label1.Text = "烟台大学";
}

private void button1_Click(object sender, EventArgs e)
{
colorDialog1.AllowFullOpen = true;
colorDialog1.FullOpen = true;
colorDialog1.Color = Color.DarkBlue;
if (colorDialog1.ShowDialog() != DialogResult.Cancel)
this.BackColor = colorDialog1.Color;
}

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

运行结果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c#