Спасибо Джону, что выбрал меня на правильный путь, поскольку у меня было такое же желание: чтобы цвет текста элемента был разным для каждого из 3 состояний флажка.
Я придумал этот подкласс CheckedListBox. Изменяет текст элементов, а не цвет фона. Позволяет пользователю установить 3 цвета во время разработки или в коде.
Это также исправляет проблему, которая у меня возникла, когда я получил ошибку при просмотре элемента управления в конструкторе. Мне также пришлось преодолеть проблему, которая, как мне кажется, произошла бы в вашем решении, где, если бы выбран элемент base.OnDrawItem, метод уничтожает выбор цвета, установленный в переопределенном методе OnDrawItem. Я сделал это за счет того, что выбранный элемент больше не имеет цветного фона, удалив часть e.State, в которой говорится, что он выбран таким образом, что в base.OnDrawItem он не предназначен для внешнего вида и ощущения выбранного элемента. Это нормально, хотя я думаю, что пользователь будет видеть прямоугольник фокуса, который указывает, какой из них выбран.
Надеюсь, это может быть полезно для других. Я не нашел ничего для связного решения (даже просто полного метода OnDrawItem) при просмотре в сети.
using System;
using System.Windows.Forms;
using System.Drawing;
namespace MyNameSpace
{
/// <summary>
/// This is a CheckedListBox that allows the item's text color to be different for each of the 3 states of the corresponding checkbox's value.
/// Like the base CheckedListBox control, you must handle setting of the indeterminate checkbox state yourself.
/// Note also that this control doesn't allow highlighting of the selected item since that obscures the item's special text color which has the special meaning. But
/// the selected item is still known to the user by the focus rectangle it will have surrounding it, like usual.
/// </summary>
class ColorCodedCheckedListBox : CheckedListBox
{
public Color UncheckedColor { get; set; }
public Color CheckedColor { get; set; }
public Color IndeterminateColor { get; set; }
/// <summary>
/// Parameterless Constructor
/// </summary>
public ColorCodedCheckedListBox()
{
UncheckedColor = Color.Green;
CheckedColor = Color.Red;
IndeterminateColor = Color.Orange;
}
/// <summary>
/// Constructor that allows setting of item colors when checkbox has one of 3 states.
/// </summary>
/// <param name="uncheckedColor">The text color of the items that are unchecked.</param>
/// <param name="checkedColor">The text color of the items that are checked.</param>
/// <param name="indeterminateColor">The text color of the items that are indeterminate.</param>
public ColorCodedCheckedListBox(Color uncheckedColor, Color checkedColor, Color indeterminateColor)
{
UncheckedColor = uncheckedColor;
CheckedColor = checkedColor;
IndeterminateColor = indeterminateColor;
}
/// <summary>
/// Overriden draw method that doesn't allow highlighting of the selected item since that obscures the item's text color which has desired meaning. But the
/// selected item is still known to the user by the focus rectangle being displayed.
/// </summary>
/// <param name="e"></param>
protected override void OnDrawItem(DrawItemEventArgs e)
{
if (this.DesignMode)
{
base.OnDrawItem(e);
}
else
{
Color textColor = this.GetItemCheckState(e.Index) == CheckState.Unchecked ? UncheckedColor : (this.GetItemCheckState(e.Index) == CheckState.Checked ? CheckedColor : IndeterminateColor);
DrawItemEventArgs e2 = new DrawItemEventArgs
(e.Graphics,
e.Font,
new Rectangle(e.Bounds.Location, e.Bounds.Size),
e.Index,
(e.State & DrawItemState.Focus) == DrawItemState.Focus ? DrawItemState.Focus : DrawItemState.None, /* Remove 'selected' state so that the base.OnDrawItem doesn't obliterate the work we are doing here. */
textColor,
this.BackColor);
base.OnDrawItem(e2);
}
}
}
}