我一直在研究WPF应用程序,该应用程序本质上是WYSIWYG编辑器,并且正在使用拖放功能。我具有拖放功能,但需要使其更加直观和用户友好。其中一部分将涉及实际显示要拖动的项目。最简单的方法是什么?我拖动的项目并没有什么特别的,但是我什至不知道在哪里寻找如何做的。
最佳答案
您将需要使用DragDrop.GiveFeedback等等。
较旧的博客文章中有关游标操纵的简单示例...
private void StartDragCustomCursor(MouseEventArgs e)
{
GiveFeedbackEventHandler handler = new GiveFeedbackEventHandler(DragSource_GiveFeedback);
this.DragSource.GiveFeedback += handler;
IsDragging = true;
DataObject data = new DataObject(System.Windows.DataFormats.Text.ToString(), "abcd");
DragDropEffects de = DragDrop.DoDragDrop(this.DragSource, data, DragDropEffects.Move);
this.DragSource.GiveFeedback -= handler;
IsDragging = false;
}
void DragSource_GiveFeedback(object sender, GiveFeedbackEventArgs e)
{
try
{
//This loads the cursor from a stream ..
if (_allOpsCursor == null)
{
using (Stream cursorStream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(
"SimplestDragDrop.DDIcon.cur"))
{
_allOpsCursor = new Cursor(cursorStream);
}
}
Mouse.SetCursor(_allOpsCursor);
e.UseDefaultCursors = false;
e.Handled = true;
}
finally { }
}
关于c# - 如何显示在WPF中拖动的项目?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4878004/