2

一个很简单的问题,但我认为证明它比听起来要困难得多

当焦点离开列表视图时,我想保留对列表视图项目的选择,目前我已将hideselection属性设置为 false,这很好.. 它确实会导致非常浅的灰色选择留在列表之后视图失去焦点,所以我的问题是,如何正确显示该项目仍处于选中状态,以便用户能够识别,例如更改行文本颜色或背景颜色?或者只是在第一次选择时保持突出显示整行变成蓝色?

我查看了智能感知,似乎找不到任何关于行或项目或选定项目的单个颜色属性的内容?

它必须存在,因为选定的项目有自己的背景颜色,我在哪里可以改变它?

哦,列表视图确实需要保留在详细信息视图中,这意味着我不能使用我在谷歌搜索时能够找到的唯一方法

谢谢

4

2 回答 2

4

这是不允许多选且没有图像(例如复选框)的 ListView 的解决方案。

  1. 为 ListView 设置事件处理程序(在此示例中,它被命名为listView1):
    • 绘图项
    • 离开(ListView 失去焦点时调用)
  2. 声明一个全局 int 变量(即包含 ListView 的 Form 的成员,在本例中名为gListView1LostFocusItem)并将其赋值为 -1
    • int gListView1LostFocusItem = -1;
  3. 实现事件处理程序如下:

    private void listView1_Leave(object sender, EventArgs e)
    {
        // Set the global int variable (gListView1LostFocusItem) to
        // the index of the selected item that just lost focus
        gListView1LostFocusItem = listView1.FocusedItem.Index;
    }
    
    private void listView1_DrawItem(object sender, DrawListViewItemEventArgs e)
    {
        // If this item is the selected item
        if (e.Item.Selected)
        {
            // If the selected item just lost the focus
            if (gListView1LostFocusItem == e.Item.Index)
            {
                // Set the colors to whatever you want (I would suggest
                // something less intense than the colors used for the
                // selected item when it has focus)
                e.Item.ForeColor = Color.Black;
                e.Item.BackColor = Color.LightBlue;
    
               // Indicate that this action does not need to be performed
               // again (until the next time the selected item loses focus)
                gListView1LostFocusItem = -1;
            }
            else if (listView1.Focused)  // If the selected item has focus
            {
                // Set the colors to the normal colors for a selected item
                e.Item.ForeColor = SystemColors.HighlightText;
                e.Item.BackColor = SystemColors.Highlight;
            }
        }
        else
        {
            // Set the normal colors for items that are not selected
            e.Item.ForeColor = listView1.ForeColor;
            e.Item.BackColor = listView1.BackColor;
        }
    
        e.DrawBackground();
        e.DrawText();
    }
    

注意:此解决方案可能会导致一些闪烁。对此的修复涉及对 ListView 控件进行子类化,以便您可以将受保护的属性DoubleBuffered更改为 true。

public class ListViewEx : ListView
{
    public ListViewEx() : base()
    {
        this.DoubleBuffered = true;
    }
}

我创建了上述类的类库,以便可以将其添加到工具箱中。

于 2013-04-01T19:15:00.753 回答
1

A possible solution might be this answer to an another question:

How to change listview selected row backcolor even when focus on another control?

于 2012-06-06T14:06:30.963 回答