首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

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

2013-12-10 
WPF,怎样去掉ListBox的右键选中项对于ListBox而言,鼠标右击项的时候,也会选中项,请问怎样去掉这个功能,我

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

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

热点排行