gpt4 book ai didi

c# - 带有 AllowColumnReorder 的 ListView OwnerDraw 不能正常工作

转载 作者:行者123 更新时间:2023-11-30 16:08:40 26 4
gpt4 key购买 nike

我正在绘制自定义 ListView,并将 OwnerDraw 属性设置为“true”。 listview 也有 AllowColumnReorder 'true' 属性。

private void listView1_DrawSubItem(object sender, DrawListViewSubItemEventArgs e)
{
e.Graphics.DrawString(e.SubItem.Text, Font, Brushes.Black, e.Bounds);
}

这工作正常:

enter image description here

但是如果我移动第一列,就会出现绘图问题——前两列的数据被绘制在第一列中,而被移动的列中的数据根本没有被绘制:

enter image description here

发生这种情况是因为 e.Bounds 对两个不同的列具有相等的值。我该怎么做才能获得正确的 e.Bounds 值。

最佳答案

是的,这是 ListView 类中的错误。它的私有(private)GetItemRectOrEmpty() method很无聊。作为错误解决方法编写,内部错误编号 VSWhidbey #163674。一个错误修复导致另一个错误是一个非常传统的编程事故,大男孩也会犯错误:) 当它向 Windows 询问项目矩形时,通过 e.Bounds 属性传递给您,它会出错并要求 ItemBoundsPortion.Entire。这是完整的 ListViewItem 矩形,包括子项。

幸运的是,解决方法很简单,您可以自己使用 ItemBoundsPortion.ItemOnly:

private void listView1_DrawSubItem(object sender, DrawListViewSubItemEventArgs e) {
var bounds = e.Bounds;
if (e.ColumnIndex == 0) {
bounds = listView1.GetItemRect(e.ItemIndex, ItemBoundsPortion.ItemOnly);
}
e.Graphics.DrawString(e.SubItem.Text, Font, Brushes.Black, bounds);
}

关于c# - 带有 AllowColumnReorder 的 ListView OwnerDraw 不能正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28880301/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com