C# COLORDİALOG KULLANIMI
DialogResult tus;
tus = colorDialog1.ShowDialog();
if (tus == DialogResult.OK)
{
this.BackColor = colorDialog1.Color;
}