您好!
想问一下,使用C1DragDropManager拖拽ListBoxItem,同时ListBox也有响应事件SelectionChanged;
使用示例代码拖拽
personElement.MouseDown += (s, e) =>
{
// _dd is the first to get the event.
// Then we mark it handled to inhibit ListBox selection stealing _dd's mouse capture.
e.Handled = true;
};
不能响应SelectionChanged,怎么解决这个问题?
|
|