如何将图标按钮绘制到列表视图(winform)

时间:2018-03-27 04:45:47

标签: c# winforms

我想绘制一个图标,可以在详细视图和大图标视图中触发点击事件。

private void ls_DrawSubItem(object sender, DrawListViewSubItemEventArgs e)
{
        if (e.ColumnIndex == ls.Columns.Count - 1)
        {
            e.DrawBackground();

            Rectangle imageRect = new Rectangle(e.Bounds.X, e.Bounds.Y, e.Bounds.Height, e.Bounds.Height);
            e.Graphics.DrawImage(SystemIcons.Information.ToBitmap(), imageRect);

        }
        else
        {
            e.DrawDefault = true;
        }
    }

我使用它来绘制一个图标,但是如何给它一个点击事件。

0 个答案:

没有答案