我想帮助解决如何在不使用ResourceDictionary Code-Behind(例如Styles.xaml.cs)的情况下处理ResourceDictionary(例如Styles.xaml)中的控件的事件,主要是因为我希望Styles.xaml只是在那里造型。
我的方案是,我有一个自定义页面,它使用ResourceDictionary用于DataTemplate样式(我使用的是TemplateSelector)。但是,我目前遇到的问题是处理事件。例如:
我在 Styles.xaml :
中有这个.
.
<Button Click="Button_Click"/>
.
我在 CustomPage.xaml.cs :
中声明了这一点private void Button_Click(object sender, RoutedEventArgs e)
{
// some code
}
然而,它不起作用。有没有办法明确告诉我想要使用特定的事件处理程序来处理按钮的点击事件?另外,是否可以为每个页面使用不同的处理程序,例如
CustomPage2.xaml.cs:
private void Button_Click(object sender, RoutedEventArgs e)
{
// some different code from CustomPage.xaml.cs
}
谢谢!