在虚拟模式下闪烁ListView

时间:2013-08-20 15:01:36

标签: c# winforms listview virtualmode

我在默认的ListView中发现了一个不那么有趣的错误(不是所有者绘制的!)。当项目不断添加到其中时,它会闪烁严重(通过使用Timer示例)并且用户试图看到项目略微远离所选项目(滚动向上或向下)。

我在这里做错了吗?

以下是一些重现它的代码:

  • 创建WindowsFormsApplication1;
  • 将表单WindowState设置为Maximized;
  • 放置表单timer1,将Enabled设置为true;
  • 放入表单listView1:

        this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
        this.listView1.View = System.Windows.Forms.View.Details;
        this.listView1.VirtualMode = true;
    
  • 添加一列;

  • 添加活动

        this.listView1.RetrieveVirtualItem += new System.Windows.Forms.RetrieveVirtualItemEventHandler(this.listView1_RetrieveVirtualItem);
    
  • 最后

    private void listView1_RetrieveVirtualItem(object sender, RetrieveVirtualItemEventArgs e)
    {
        e.Item = new ListViewItem(e.ItemIndex.ToString());
    }
    
    private void timer1_Tick(object sender, EventArgs e)
    {
        listView1.VirtualListSize++;
    }
    

现在运行它并等到列表视图上的滚动条出现(因为计时器将添加足够的项目),然后:

  • 选择列表视图中的第一个项目(使用鼠标或键),然后使用滚动条或鼠标滚轮滚动向下,以便所选项目将超出当前视图(向上)。向下滚动越多,闪烁越重!看看滚动条在做什么?!?!?

  • 如果向下滚动所选项目,则会出现类似效果。


问题

我该如何处理?想法是有一种不断更新的日志窗口,可以停止自动滚动,上下移动来调查近距离的事件。但是,使用 kek-effect ,这是不可能的!

4 个答案:

答案 0 :(得分:3)

看起来问题与Selected / Focused组合有关(也许微软的某个人可以确认)。

这是一个可能的解决方法(它很脏,我撒谎!):

    private void timer1_Tick(object sender, EventArgs e)
    {
        // before adding
        if (listView1.SelectedIndices.Count > 0)
        {
            if (!listView1.Items[listView1.SelectedIndices[0]].Bounds.IntersectsWith(listView1.ClientRectangle))
                listView1.TopItem.Focused = true;
            else
                listView1.Items[listView1.SelectedIndices[0]].Focused = true;
        }
        // add item
        listView1.VirtualListSize++;
    }

Trick是在添加新项目之前检查,只要当前选择的项目不在时(here是如何检查的主题)。如果项目不在,则暂时将焦点设置为当前TopItem(直到用户向后滚动,以便所选项目将再次“可见”,这时它将重新聚焦)。

答案 1 :(得分:1)

经过一些寻找解决方案之后,我意识到你选择一个项目后无法阻止闪烁。我尝试过使用一些ListView消息但是失败了。如果你想对此进行更多研究,我认为你应该注意LVM_SETITEMSTATE以及其他一些消息。毕竟,我想到了这个想法,我们必须阻止用户选择一个项目。所以要伪造一个选中的项目,我们必须做一些自定义绘图和假装:

public class CustomListView : ListView
{
        public CustomListView(){
            SelectedIndices = new List<int>();
            OwnerDraw = true;
            DoubleBuffered = true;
        }
        public new List<int> SelectedIndices {get;set;}
        public int SelectedIndex { get; set; }
        protected override void WndProc(ref Message m)
        {
            if (m.Msg == 0x1000 + 43) return;//LVM_SETITEMSTATE                
            else if (m.Msg == 0x201 || m.Msg == 0x202)//WM_LBUTTONDOWN and WM_LBUTTONUP
            {
                int x = m.LParam.ToInt32() & 0x00ff;
                int y = m.LParam.ToInt32() >> 16;
                ListViewItem item = GetItemAt(x, y);
                if (item != null)
                {
                    if (ModifierKeys == Keys.Control)
                    {
                        if (!SelectedIndices.Contains(item.Index)) SelectedIndices.Add(item.Index);
                    }
                    else if (ModifierKeys == Keys.Shift)
                    {
                        for (int i = Math.Min(SelectedIndex, item.Index); i <= Math.Max(SelectedIndex, item.Index); i++)
                        {
                            if (!SelectedIndices.Contains(i)) SelectedIndices.Add(i);
                        }
                    }
                    else
                    {
                        SelectedIndices.Clear();
                        SelectedIndices.Add(item.Index);
                    }
                    SelectedIndex = item.Index;                        
                    return;
                }                    
            }
            else if (m.Msg == 0x100)//WM_KEYDOWN
            {
                Keys key = ((Keys)m.WParam.ToInt32() & Keys.KeyCode);
                if (key == Keys.Down || key == Keys.Right)
                {
                    SelectedIndex++;
                    SelectedIndices.Clear();
                    SelectedIndices.Add(SelectedIndex);
                }
                else if (key == Keys.Up || key == Keys.Left)
                {
                    SelectedIndex--;
                    SelectedIndices.Clear();
                    SelectedIndices.Add(SelectedIndex);
                }
                if (SelectedIndex == VirtualListSize) SelectedIndex = VirtualListSize - 1;
                if (SelectedIndex < 0) SelectedIndex = 0;
                return;
            }
            base.WndProc(ref m);                
        }
        protected override void OnDrawColumnHeader(DrawListViewColumnHeaderEventArgs e)
        {
            e.DrawDefault = true;
            base.OnDrawColumnHeader(e);
        }
        protected override void OnDrawItem(DrawListViewItemEventArgs e)
        {
            i = 0;           
            base.OnDrawItem(e);
        }
        int i;
        protected override void OnDrawSubItem(DrawListViewSubItemEventArgs e)
        {                
            if (!SelectedIndices.Contains(e.ItemIndex)) e.DrawDefault = true;
            else
            {
                bool isItem = i == 0;
                Rectangle iBound = FullRowSelect ? e.Bounds : isItem ? e.Item.GetBounds(ItemBoundsPortion.ItemOnly) : e.SubItem.Bounds;
                Color iColor = FullRowSelect || isItem ? SystemColors.HighlightText : e.SubItem.ForeColor;
                Rectangle focusBound = FullRowSelect ? e.Item.GetBounds(ItemBoundsPortion.Entire) : iBound;
                if(FullRowSelect || isItem) e.Graphics.FillRectangle(SystemBrushes.Highlight, iBound);                    
                TextRenderer.DrawText(e.Graphics, isItem ? e.Item.Text : e.SubItem.Text,
                    isItem ? e.Item.Font : e.SubItem.Font, iBound, iColor,
                    TextFormatFlags.LeftAndRightPadding | TextFormatFlags.VerticalCenter);
                if(FullRowSelect || isItem) 
                  ControlPaint.DrawFocusRectangle(e.Graphics, focusBound);
            }
            i++;                
            base.OnDrawSubItem(e);
        }
}

注意:如果您愿意,上面的代码会禁用MouseDownMouseUp(对于左键)和KeyDown事件(对于箭头键)处理CustomListView之外的这些事件,您可能希望自己提出这些事件。 (默认情况下,这些事件是由base.WndProc)中或之后的某些代码引发的。

还有一种情况是用户可以按holding mouse down and drag to select选择项目。要禁用此功能,我认为我们必须捕获消息WM_NCHITTEST,但我们必须在正确的条件下捕获并过滤它。我试过处理这个但没有运气。我希望你能做到。这只是一个演示。但正如我所说,我们似乎无法走另一条路。我认为您的问题是BUG控件中的某种ListView

更新

事实上,之前我曾考虑过FocusedSelected但是当我尝试使用SelectedItem访问ListView.SelectedItems时(那是错误的)。所以我没有尝试这种方法。但是,在发现我们可以通过SelectedItemListView访问虚拟模式ListView.SelectedIndices ListView.Items之后,我认为此解决方案是最有效和最简单的解决方案:

int selected = -1;
bool suppressSelectedIndexChanged;
private void timer1_Tick(object sender, EventArgs e)
{
  listView1.SuspendLayout();                
  if (selected > -1){
     ListViewItem item = listView1.Items[selected];
     Rectangle rect = listView1.GetItemRect(item.Index);
     suppressSelectedIndexChanged = true;                    
     item.Selected = item.Focused = !(rect.Top <= 2 || rect.Bottom >= listView1.ClientSize.Height-2);
     suppressSelectedIndexChanged = false;
  }
  listView1.VirtualListSize++;
  listView1.ResumeLayout(true);
}
private void listView1_SelectedIndexChanged(object sender, EventArgs e){
   if (suppressSelectedIndexChanged) return;
   selected = listView1.SelectedIndices.Count > 0 ? listView1.SelectedIndices[0] : -1;
}

注意:代码只是针对用户选择仅1项的案例的演示,您可以添加更多代码来处理案例用户选择更多比1项

答案 2 :(得分:0)

我遇到了同样的问题并且@Sinatr的代码几乎完美无缺,但是当所选项目位于列表视图的顶部边框上时,它会在每次更新时在所选项和下一项之间跳转。

我必须将列标题的高度包含在可见性测试中,这可以解决我的问题:

if (lstLogMessages.SelectedIndices.Count > 0)
{
    Rectangle selectedItemArea = lstLogMessages.Items[lstLogMessages.SelectedIndices[0]].Bounds;
    Rectangle listviewClientArea = lstLogMessages.ClientRectangle;
    int headerHeight = lstLogMessages.TopItem.Bounds.Top;
    if (selectedItemArea.Y + selectedItemArea.Height > headerHeight && selectedItemArea.Y + selectedItemArea.Height < listviewClientArea.Height)   // if the selected item is in the visible region 
    {
        lstLogMessages.Items[lstLogMessages.SelectedIndices[0]].Focused = true;
    }
    else
    {
        lstLogMessages.TopItem.Focused = true;
    }
}

lstLogMessages.VirtualListSize = currentView.MessageCount;

答案 3 :(得分:0)

我知道这是老帖子,[King King]已经给出了一个双缓冲区的例子,但是如果它对某些人有帮助,仍会发布一个简单的代码。即使您选择了一个项目,这也会消除闪烁,但您需要继承ListView才能使用此原因无法从外部访问SetStyle

C#代码

public class ListViewEX : ListView
{
    public ListViewEX()
    {
        SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer, true);
    }
}

VB.NET

Public Class ListViewEX
    Inherits ListView
    Public Sub New()
        SetStyle(ControlStyles.AllPaintingInWmPaint Or ControlStyles.OptimizedDoubleBuffer, True)
    End Sub
End Class