Just initialize the ColorDialog and call the ShowDialog method to display the Color picker . Once the color is picked , it is available in the Color property of the ColorDialog object.
System.Windows.Forms.ColorDialog ACcolorDialog = new System.Windows.Forms.ColorDialog();
if (ACcolorDialog.ShowDialog() == DialogResult.OK)
{
MessageBox.Show(ACcolorDialog.Color.ToString());
}