CheckedListBox自定義繪制技巧

小樊
86
2024-09-03 13:47:05
欄目: 編程語言

CheckedListBox 是一個(gè) Windows Forms 控件,用于顯示帶有復(fù)選框的項(xiàng)目列表

  1. 設(shè)置 DrawMode 屬性:將 CheckedListBoxDrawMode 屬性設(shè)置為 OwnerDrawFixedOwnerDrawVariable。這將允許你自定義項(xiàng)目的繪制方式。
checkedListBox1.DrawMode = DrawMode.OwnerDrawFixed;
  1. 處理 DrawItem 事件:為 CheckedListBox 控件的 DrawItem 事件添加一個(gè)事件處理程序。在此處理程序中,你可以自定義項(xiàng)目的繪制方式。
checkedListBox1.DrawItem += CheckedListBox1_DrawItem;
  1. DrawItem 事件處理程序中自定義繪制:在事件處理程序中,你可以使用 Graphics 對(duì)象和其他屬性(如 Font、ForeColor 等)來自定義項(xiàng)目的繪制方式。
private void CheckedListBox1_DrawItem(object sender, DrawItemEventArgs e)
{
    // 獲取 CheckedListBox 控件
    CheckedListBox clb = (CheckedListBox)sender;

    // 繪制背景
    e.DrawBackground();

    // 獲取項(xiàng)目文本
    string itemText = clb.GetItemText(clb.Items[e.Index]);

    // 獲取項(xiàng)目的復(fù)選框狀態(tài)
    CheckState checkState = clb.GetItemCheckState(e.Index);

    // 自定義繪制復(fù)選框
    Rectangle checkBoxRect = new Rectangle(e.Bounds.X + 2, e.Bounds.Y + 2, 14, 14);
    ControlPaint.DrawCheckBox(e.Graphics, checkBoxRect, ButtonState.Normal | GetButtonState(checkState));

    // 自定義繪制項(xiàng)目文本
    Rectangle textRect = new Rectangle(e.Bounds.X + 20, e.Bounds.Y, e.Bounds.Width - 20, e.Bounds.Height);
    TextRenderer.DrawText(e.Graphics, itemText, clb.Font, textRect, clb.ForeColor, TextFormatFlags.Left | TextFormatFlags.VerticalCenter);

    // 繪制焦點(diǎn)框
    e.DrawFocusRectangle();
}

private ButtonState GetButtonState(CheckState checkState)
{
    switch (checkState)
    {
        case CheckState.Checked:
            return ButtonState.Checked;
        case CheckState.Indeterminate:
            return ButtonState.Mixed;
        default:
            return ButtonState.Normal;
    }
}

通過這些步驟,你可以實(shí)現(xiàn) CheckedListBox 控件的自定義繪制。你可以根據(jù)需要調(diào)整繪制代碼,以實(shí)現(xiàn)所需的外觀和樣式。

0