C#程序设计(二十五)----颜色对话框

* 程序的版权和版本声明部分
* Copyright (c) 2012, 烟台大学计算机学院学生
* All rights reserved.

* 作 者: 刘镇
* 完成日期: 2012 年 11 月 18 日
* 版 本 号: 3.025

* 对任务及求解方法的描述部分

* 问题描述:

创建一个如下的窗体,并在窗体上放置colorDialog控件。实现功能: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 Win10_4
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

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

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


 

测试结果:

 

C#程序设计(二十五)----颜色对话框_第1张图片

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(C#程序设计(二十五)----颜色对话框)