读书人

WPF怎样去掉ListBox的右键选中项,该

发布时间: 2013-12-10 15:05:55 作者: rapoo

WPF,怎样去掉ListBox的右键选中项
对于ListBox而言,鼠标右击项的时候,也会选中项,请问怎样去掉这个功能,我只想鼠标左键点击选中项。
[解决办法]

        private void listBox1_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
if (e.RightButton == MouseButtonState.Pressed)
e.Handled = true;
}

读书人网 >C#

热点推荐