双击选择所有ListBoxItems

时间:2010-10-19 02:20:51

标签: c# wpf events

我已经使用ff连接到ListBoxItems的双击事件。我的XAML中的代码:

    <Style TargetType="{x:Type ListBoxItem}">
        <EventSetter Event="MouseDoubleClick" Handler="onMouseDoubleClickOnListBoxItem" />
    </Style>

处理程序的代码是:

    private void onMouseDoubleClickOnListBoxItem(object sender, MouseButtonEventArgs e)
    {
        Debug.Print("Going to select all.");
        listBox.SelectAll();
        Debug.Print("Selected all.");
    }

当我运行它时,我看到了调试输出,但是并没有在屏幕上选择所有项目。

1 个答案:

答案 0 :(得分:1)

尝试将SelectionMode作为多个。

更新

在扩展模式下,执行双击的项目将重置为SelectedItem,这是因为在同一个线程上执行了选择单个项目的单击事件操作。

为了实现这一目标,我在双击事件处理程序中调用了(开始调用 - 这是异步)一个委托方法(在类范围内),并从那里调用主窗口Dispatcher上的列表框的SelectAll调用。

像,

// delegate
delegate void ChangeViewStateDelegate ();

// on double click event invoke the custom method
private void onMouseDoubleClickOnListBoxItem (object sender, MouseButtonEventArgs e) {
    ChangeViewStateDelegate handler = new ChangeViewStateDelegate (Update);
    handler.BeginInvoke (null, null);
}

// in the custom method invoke the selectall function on the main window (UI which created the listbox) thread
private void Update () {
    ChangeViewStateDelegate handler = new ChangeViewStateDelegate (UIUpdate);
    this.Dispatcher.BeginInvoke (handler, null);
}

// call listbox.SelectAll
private void UIUpdate () {
    lstBox.SelectAll ();
}