Click on me to change the color : Color Dialog « GUI Windows Form « C# / C Sharp






Click on me to change the color

Click on me to change the color
 

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

public class MainForm : Form {
    private ColorDialog colorDlg;
    private Color currColor = Color.DimGray;

    public MainForm() {
        CenterToScreen();
        colorDlg = new ColorDialog();
        this.MouseDown += new MouseEventHandler(MainForm_MouseDown);
    }

    void MainForm_MouseDown(object sender, MouseEventArgs e) {
        if (colorDlg.ShowDialog() != DialogResult.Cancel) {
            currColor = colorDlg.Color;
            this.BackColor = currColor;
            string strARGB = colorDlg.Color.ToString();
            MessageBox.Show(strARGB, "Color is:");
        }
    }
}

 








Related examples in the same category

1.Color Converter
2.Display color dialog and get user selectionDisplay color dialog and get user selection
3.Color Dialog and Font DialogColor Dialog and Font Dialog