Beispiel #1
0
        private void btn3DPlaneColor_Click(object sender, EventArgs e)
        {
            FormColorPicker picker = new FormColorPicker();

            if (picker.ShowDialog() == DialogResult.OK)
            {
                btn3DPlaneColor.BackColor = picker.PickedColor;
                m_Plane3DColor            = picker.PickedColor;
                FixColors();
            }
            picker.Dispose();
        }