Yazı Font Küçült Yazı Font Büyült

colorDialog Kullanımı

Bu örneğimizde colorDialog nesnesini kullanarak formumuzun rengini değiştireceğiz. İlk önce formunuza 1 adet button ve colorDialog ekleyin. Aşağıdaki şekilleri inceleyin.

Resim1

Şekil 1

Resim2

Şekil 2

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

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

        private void btnRenk_Click(object sender, EventArgs e)
        {
            if (colorDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK);
            {
            this.BackColor = colorDialog1.Color;
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.Text = "colorDialog Bahadirsa";
            this.Size = new System.Drawing.Size(250, 200);
            this.Location = new Point(100, 100);
            this.MaximizeBox = false;
        }
    }
}

//Bir sonraki makalede görüşmek üzere...Bahadır