我有一个 DataTemplate,它需要一个对象的事件处理程序。此 DataTemplate 包含在 ResourceDictionary 中。向此模板添加事件处理程序的最佳方法是什么?
我尝试在 app.xaml.cs 中定义事件处理程序,但处理程序没有执行。为 ResourceDictionary 创建代码隐藏文件会导致应用程序启动期间在 MergedDictionaries 中出现加载错误。
来自 GraphStyles.xaml
<DataTemplate x:Key="PieTemplate">
<Grid HorizontalAlignment="Left" Width="350" Height="350" >
<Border>
<Charting:Chart
x:Name="PieChart"
Title="Play Attempts"
Margin="70,0" Loaded="PieChart_Loaded">
<Charting:Chart.Series>
<Charting:PieSeries
Title="Attempts"
ItemsSource="{Binding Items}"
IndependentValueBinding="{Binding Name}"
DependentValueBinding="{Binding Value}"
IsSelectionEnabled="True" />
</Charting:Chart.Series>
</Charting:Chart>
</Border>
</Grid>
</DataTemplate>
在 App.Xaml.cs 中
private void PieChart_Loaded(object sender, RoutedEventArgs e)
{
var pieChart = sender as Chart;
var legendItems = ((PieSeries)pieChart.Series[0]).LegendItems;
foreach (LegendItem item in legendItems)
{
pieChart.LegendItems.Add(item);
pieChart.LegendStyle = item.Style;
}
}