在 ComboBox 中显示颜色列表 - 颜色选择器

The*_*bie 3 .net c# combobox winforms

] 想ComboBox用所有颜色的列表填充我的。我期待这样的事情:

CBcolor.DataSource = AllColor;
Run Code Online (Sandbox Code Playgroud)

然后我想像这样使用我的 ComboBox:

Color selected = CBcolor.selectedvalue;   
C_ObjetGraphique cercle = new dessin.Cercle(e.Location, selected, selected, 100);
cercle.Affiche();
ledessin.ajoute(cercle);
Run Code Online (Sandbox Code Playgroud)

如何在我ComboBox的颜色选择器中显示颜色列表?

Rez*_*aei 5

通常,您需要将颜色列表设置为组合框的数据源。您可能有一些预定义颜色的列表,例如 Color.Red、Color.Green、Color.Blue;您可以依赖KnownColor,或者您可以使用反射来获取类型的Color属性Color

在这个例子中,我使用Color类型的颜色属性来显示一个像这样的组合框:

在 ComboBox 中显示颜色列表

获取颜色列表并设置组合框的数据源:

comboBox1.DataSource = typeof(Color).GetProperties()
    .Where(x => x.PropertyType == typeof(Color))
    .Select(x => x.GetValue(null)).ToList();
Run Code Online (Sandbox Code Playgroud)

处理组合框的自定义绘制:

comboBox1.MaxDropDownItems = 10;
comboBox1.IntegralHeight = false;
comboBox1.DrawMode = DrawMode.OwnerDrawFixed;
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox1.DrawItem += comboBox1_DrawItem;
Run Code Online (Sandbox Code Playgroud)

然后对于comboBox1_DrawItem

private void comboBox1_DrawItem(object sender, DrawItemEventArgs e)
{
    e.DrawBackground();
    if (e.Index >= 0)
    {
        var txt = comboBox1.GetItemText(comboBox1.Items[e.Index]);
        var color = (Color)comboBox1.Items[e.Index];
        var r1 = new Rectangle(e.Bounds.Left + 1, e.Bounds.Top + 1,
            2 * (e.Bounds.Height - 2), e.Bounds.Height - 2);
        var r2 = Rectangle.FromLTRB(r1.Right + 2, e.Bounds.Top,
            e.Bounds.Right, e.Bounds.Bottom);
        using (var b = new SolidBrush(color))
            e.Graphics.FillRectangle(b, r1);
        e.Graphics.DrawRectangle(Pens.Black, r1);
        TextRenderer.DrawText(e.Graphics, txt, comboBox1.Font, r2,
            comboBox1.ForeColor, TextFormatFlags.Left | TextFormatFlags.VerticalCenter);
    }
}
Run Code Online (Sandbox Code Playgroud)

从组合框中获取选定的颜色:

if(comboBox1.SelectedIndex>=0)
    this.BackColor = (Color)comboBox1.SelectedValue;
Run Code Online (Sandbox Code Playgroud)