4

我正在尝试将项目从列表框中拖动到 WPF 中的文本框。我无法获得任何可以让我这样做的代码。

谢谢

4

1 回答 1

0

使用列表框的选择更改事件

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);
}
于 2014-04-25T10:05:46.827 回答