我不想使用输入设备生成的事件,而是想使用一个自定义事件,该事件将在我的xaml中作为EventTrigger在代码隐藏中以编程方式引发。
这应该是可笑的,但我无法在任何地方找到一个例子。
以下是我从WPF4释放的第6章,Routed Event Implementation,EventTrigger.RoutedEvent Property,Custom RoutedEvent as EventTrigger以及其他许多内容中得出的结论:
MainWindow.xaml.cs:
namespace RoutedEventTrigger
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
RaiseEvent(new RoutedEventArgs(fooEvent, this));
}
public static readonly RoutedEvent fooEvent = EventManager.RegisterRoutedEvent(
"foo", RoutingStrategy.Direct, typeof(RoutedEventHandler), typeof(MainWindow));
// Provide CLR accessors for the event
public event RoutedEventHandler foo
{
add { AddHandler(fooEvent, value); }
remove { RemoveHandler(fooEvent, value); }
}
}
}
MainWindow.xaml:
P.S。请保持温和,我对WPF来说比较新。
答案 0 :(得分:5)
Okuma Scott,
您是否尝试过构建(重建)项目。 WPF要求您构建项目,以便XAML解析器可以看到项目更改。使用下面的代码构建就好了。
代码的
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
public static readonly RoutedEvent fooEvent = EventManager.RegisterRoutedEvent("foo", RoutingStrategy.Direct, typeof(RoutedEventHandler), typeof(MainWindow));
// Provide CLR accessors for the event
public event RoutedEventHandler foo
{
add { AddHandler(fooEvent, value); }
remove { RemoveHandler(fooEvent, value); }
}
}
XAML。
<Window x:Class="WpfApplication3.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication3"
Title="MainWindow" Height="350" Width="525">
<Window.Triggers>
<EventTrigger RoutedEvent="local:MainWindow.foo" />
</Window.Triggers>
</Window>
编辑:在重新构建项目之前,显示了相同的解析器错误。
答案 1 :(得分:2)
<Window.Triggers>
<EventTrigger RoutedEvent="{x:Static local:MainWindow.foo}" />
</Window.Triggers>
我遇到了同样的问题,但你所有的解决方案对我都没有用。 上面的这个片段确实为我解决了这个问题。
答案 2 :(得分:0)
我遇到了同样的问题,但重建对我来说不起作用,直到我重新开始我的工作室。关闭它并重新打开Projekt,它工作正常。