为什么WPF ListBox.ListItems不会引发MouseRightButtonDown

问题描述:

我正在尝试RoutedEvent来自WPF 4的例子Unleashed book。该示例在Window上有许多控件,并且它在窗口上定义了MouseRightButtonDown以在窗口的标题栏中显示事件源。 所以当我们右键单击窗口的任何子元素时,它的名称,类型等都显示在窗口的标题栏中。但是,当我右键单击ListBox的ListItem时,它不会在窗口的标题栏中设置它的名称,标题等。为什么?为什么WPF ListBox.ListItems不会引发MouseRightButtonDown

的代码如下:

XAML

<Window x:Class="TempWPFProj.RoutedEventDemo" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     Title="About WPF 4 Unleashed" 
     SizeToContent="WidthAndHeight" 
     Background="OrangeRed" MouseRightButtonDown="Window_MouseRightButtonDown"> 
    <StackPanel> 
     <Label FontWeight="Bold" FontSize="20" Foreground="White"> 
      WPF 4 Unleashed 
     </Label> 
     <Label>© 2010 SAMS Publishing</Label> 
     <Label>Installed Chapters:</Label> 
     <ListBox> 
      <ListBoxItem>Chapter 1</ListBoxItem> 
      <ListBoxItem>Chapter 2</ListBoxItem> 
     </ListBox> 
     <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"> 
      <Button MinWidth="75" Margin="10">Help</Button> 
      <Button MinWidth="75" Margin="10">OK</Button> 
     </StackPanel> 
     <StatusBar>You have successfully registered this product.</StatusBar> 
    </StackPanel> 
</Window> 

代码隐藏CS文件

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Threading.Tasks; 
using System.Windows; 
using System.Windows.Controls; 
using System.Windows.Data; 
using System.Windows.Documents; 
using System.Windows.Input; 
using System.Windows.Media; 
using System.Windows.Media.Imaging; 
using System.Windows.Shapes; 

namespace TempWPFProj 
{ 
    /// <summary> 
    /// Interaction logic for RoutedEventDemo.xaml 
    /// </summary> 
    public partial class RoutedEventDemo : Window 
    { 
     public RoutedEventDemo() 
     { 
      InitializeComponent(); 
     } 

     private void Window_MouseRightButtonDown(object sender, MouseButtonEventArgs e) 
     { 
      // Display information about this event 
      this.Title = "Source = " + e.Source.GetType().Name + ", OriginalSource = " + 
      e.OriginalSource.GetType().Name + " @ " + e.Timestamp; 
      // In this example, all possible sources derive from Control 
      Control source = e.Source as Control; 
      // Toggle the border on the source control 
      if (source.BorderThickness != new Thickness(5)) 
      { 
       source.BorderThickness = new Thickness(5); 
       source.BorderBrush = Brushes.Black; 
      } 
      else 
       source.BorderThickness = new Thickness(0); 
     } 
    } 
} 
+0

尝试'PreviewMouseRightButtonDown' –

它说,就在这本书为什么在列表框中没有为工作点击右键

“当您右键单击任一ListBoxItem时,窗口永远不会收到MouseRightButtonDown事件。这是因为ListBoxItem的内部处理这一事件以及MouseLeftButtonDown事件(停止冒泡)实施项目选择”

Link to page here

+0

你的意思'ListBoxItem'集'e.Handled = TRUE。 '在其事件处理程序内停止冒泡? – Mahesha999