我正在尝试将项目从列表框中拖动到 WPF 中的文本框。我无法获得任何可以让我这样做的代码。
谢谢
使用列表框的选择更改事件
private void listBox2_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
ListBoxItem i = (ListBoxItem)listBox2.Items[listBox2.SelectedIndex];
s = i.Content.ToString();
DragDrop.DoDragDrop(listBox2, i.Content.ToString(), DragDropEffects.All);
}