作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在绘制自定义 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);
}
这工作正常:
但是如果我移动第一列,就会出现绘图问题——前两列的数据被绘制在第一列中,而被移动的列中的数据根本没有被绘制:
发生这种情况是因为 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/
我正在绘制自定义 ListView,并将 OwnerDraw 属性设置为“true”。 listview 也有 AllowColumnReorder 'true' 属性。 private void l
我是一名优秀的程序员,十分优秀!