如何拖放 DataGrid 列标题?
我正在使用 WPF DataGrid。我必须拖动列标题,将其放到其他控件(例如标签)上并执行一些操作。但我无法实现 DataGrid 列标题的拖放。我尝试过 ColumnHeaderDragStarted 事件,但无法在处理程序中找到列标题对象或标题名称。 有什么帮助吗?
I am working with WPF DataGrid. I have to drag the Column Header, drop it to some other control(say Label) and do some operation. But i am not able to achieve drag and drop of DataGrid Column Header. I have tried with ColumnHeaderDragStarted event, but I am not able to find Column Header object or just the Name of header in the handler.
Any help plz!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这可以帮助您:
在 XAML 上:
在 C# 代码上:
Maybe this can help you:
On XAML:
<DataGrid Name="DataGrid" MouseRightButtonUp="DataGrid_MouseRightButtonUp" />
On C# Code: