我可以检测用户是否右键单击 Winforms 中的 ListView 列标题吗?
我指的不是列表视图项的内部,而是允许您调整列大小的列标题。
I don't mean the inside of the listview items but the column header that allows you to resize the column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一个简单的 UserControl 覆盖
ListView
的OnMouseEnter
OnMouseLeave
&WndProc
及其用法
A simple UserControl overriding
ListView
'sOnMouseEnter
OnMouseLeave
&WndProc
and the usage
OnMouseEnter/Leave 解决方案有时甚至不在标题上显示上下文菜单。这是更好的解决方案用于列标题的ListView ContextMenuStrip
The OnMouseEnter/Leave solution shows the context menu sometimes even not on the header. Here is better solution ListView ContextMenuStrip for column headers