问题描述
我正在尝试在我的listview控件中实现拖放操作,以便我可以重新排列项目。
我想使用系统默认游标来指示何时丢弃/是不允许的。
我检查了 []功能并没有找到任何结果。
我能做的最好的相似之处发现是在不允许掉线的情况下 - > IDC_NO
与OLE拖放中的光标外观相同,但它是红色的(我在Windows 7上测试了这个)。
如何使用 LoadCursor
(或类似函数)加载OLE拖放中使用的默认游标?
I am trying to implement drag and drop in my listview control so I can rearrange items.
I want to use system default cursors to indicate when drop is/isn't allowed.
I have checked documentation for LoadCursor[^] function and have found nothing.
The best resemblance I could find was for the case when drop is not allowed -> IDC_NO
has the same look as the cursor in OLE drag and drop, but it is red ( I have tested this on my Windows 7).
How to use LoadCursor
(or some similar function) to load default cursors used in OLE drag and drop?
这篇关于加载默认拖放光标到我的应用程序中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!