我正在尝试使用C#WPF自定义路由事件我遇到了问题。 这就是我想要做的:我想从我的主窗口触发一个自定义路由事件,它通过一个stackpanel隧道传输到一个由Button类派生的自定义控件。然后,自定义控件处理路由事件。
我的问题是当我触发事件时,处理程序从未被调用过。
我的代码:
public partial class MainWindow : Window
{
public static readonly RoutedEvent MyRoutedEvent = EventManager.RegisterRoutedEvent("MyRoutedEvent", RoutingStrategy.Tunnel, typeof(RoutedEventHandler), typeof(UIElement));
public static void AddMyRoutedEventHandler(DependencyObject d, RoutedEventHandler handler)
{
UIElement uie = d as UIElement;
if (uie != null)
{
uie.AddHandler(MainWindow.MyRoutedEvent, handler);
}
}
public static void RemoveMyRoutedEventHandler(DependencyObject d, RoutedEventHandler handler)
{
UIElement uie = d as UIElement;
if (uie != null)
{
uie.RemoveHandler(MainWindow.MyRoutedEvent, handler);
}
}
public MainWindow()
{
InitializeComponent();
}
private void keyClassButton1_MyRoutedEvent(object sender, RoutedEventArgs e)
{
Console.Write("\nMyRoutedEvent!");
}
private void Window_MouseDown(object sender, MouseButtonEventArgs e)
{
RoutedEventArgs newEventArgs = new RoutedEventArgs(MyRoutedEvent, this);
RaiseEvent(newEventArgs);
}
}
XAML代码:
<Window x:Class="RoutedEvent_Test.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:RoutedEvent_Test"
Title="MainWindow" Height="350" Width="525" MouseDown="Window_MouseDown">
<Grid>
<StackPanel Name="stackPanel1">
<local:KeyClass x:Name="keyClass1" Content="key class button" Height="30" local:MainWindow.MyRoutedEvent="keyClassButton1_MyRoutedEvent"></local:KeyClass>
</StackPanel>
</Grid>
</Window>
答案 0 :(得分:2)
隧道:最初,元素树根处的事件处理程序是 调用。 路由事件然后经过连续路线 沿着路径的子元素,朝向节点元素 路由事件源(引发路由事件的元素)。 [...]
我对隧道路由事件的第一个想法是:我从主窗口触发一个事件,然后它通过stackpanel到达按钮元素。 但是INSTEAD: 你必须从按钮开始它 - 然后它从根元素(主窗口)开始,然后通过控制层到达首先触发事件的按钮元素。
我做的是:我从主窗口发射了这个事件,所以它不能去其他任何地方
答案 1 :(得分:0)
此注册似乎不正确:
public static readonly RoutedEvent MyRoutedEvent = EventManager.RegisterRoutedEvent("MyRoutedEvent", RoutingStrategy.Tunnel, typeof(RoutedEventHandler), typeof(UIElement));
您需要在此处注册时在课程中添加public event ReoutedEventHandler MyRoutedEvent
。这应该是非静态类实例级处理程序。我在你的代码上没有看到它。
你需要在MainWindow上使用这样的东西:
public event RoutedEventHandler MyRoutedEvent;