0

我对自定义 CheckedListBox 类有疑问。我有使用自定义 ComboBox 类和覆盖 OnDrawItem 的代码(包括图片)。我的目标是更改外观,以便项目出现在 CheckedListBox 类中(也具有覆盖,包括图片)而不是自定义 ComboBox。问题是图片显示不正确:直到我单击该项目并按住鼠标或滚动列表框之前它们根本不显示...此外,即使在我在代码中取消选中它们之后,选中的项目仍保持选中状态运行时(仅在视觉上,逻辑上它们都可以)。知道发生了什么吗?

public class CategoryCheckBoxListImagified : System.Windows.Forms.CheckedListBox
{
   // other stuff....
   // ...

    protected override void OnDrawItem(DrawItemEventArgs e)
    {
        if (this.Items.Count == 0) return;

        if (DisplayMode == DisplayModeEnum.TextOnly || DisplayMode == DisplayModeEnum.TextAndImages)
            base.OnDrawItem(e);

        Category category = (Category)this.Items[e.Index];

        if (DisplayMode == DisplayModeEnum.ImagesOnly || DisplayMode == DisplayModeEnum.TextAndImages)
        {
            string imagePath = Path.Combine(IMAGE_FOLDER, category.ImageName ?? "");
            Image image = null;
            if (File.Exists(imagePath))
            {
                image = Bitmap.FromFile(imagePath);
            }
            else
            {
                imagePath = Path.Combine(IMAGE_FOLDER, IMAGE_NO_IMAGE);
                image = Bitmap.FromFile(imagePath);
            }

            // e.Bounds contain the area for the whole item. Text is 16 pixels high.
            Rectangle drawImage = new Rectangle(20, e.Bounds.Top + 12, 64, 64);
            e.Graphics.DrawImage(image, drawImage);
        }
    }

}

4

0 回答 0