为什么我的所有者绘制的listview控件中没有显示所选项?

时间:2012-09-11 10:27:03

标签: c# winforms listview

我正在制作一个所有者绘制的列表视图,其中我在列表视图中绘制形状。 我使用Listview_DrawItem事件完成了此操作。 我的问题是,当我运行应用程序时,我无法选择列表视图中绘制的形状。

private void AddItem(ListView lvw, string Shape_name, Color Shape_color)
    {
        // Make the item.
        ListViewItem item = new ListViewItem(Shape_name);

        // Save the Shape object  in the Tag property.
        Shapes myShape = new Shapes(Shape_name,Shape_color);

        item.Tag = myShape;
        item.SubItems[0].Name ="ShapeName";

        // Add subitems so they can draw.
        item.SubItems.Add("ShapeColor");

        // Add the item to the ListView.
        lvw.Items.Add(item);
    }


    // Draw the item. In this case, the Shape_name's logo.
    private void lvwServers_DrawItem(object sender, DrawListViewItemEventArgs e)
    {

        // Get the ListView item and the Shapes object.
        ListViewItem item = e.Item;

        Shapes myShape = item.Tag as Shapes;

        // Clear.
        e.DrawBackground();

        // Smoothing mode for blur free drawing
        e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;

        Rectangle rect = new Rectangle(e.Bounds.Left + 10, e.Bounds.Top + 10, 41, 41);


        using (SolidBrush br = new SolidBrush(myShape.ShapeColor))
        {

            e.Graphics.FillRectangle(br, rect);
        }

        e.Graphics.DrawRectangle(Pens.Black, rect);

        e.Graphics.ResetTransform();
        e.DrawFocusRectangle();

另外,我无法更改e.bound属性的值。

1 个答案:

答案 0 :(得分:2)

您可以将DrawItem事件处理程序中的绘图代码基于DrawListViewItemEventArgs参数中可用的e.State值。

bool isSelected = e.State == ListViewItemStates.Selected;

这样,您可以决定在选择项目时要更改所绘制项目的哪些元素。