我为外部资源字典中的项目DataTemplate
定义了以下内容:ListBox
<DataTemplate x:Key="MyListBoxItemTemplate" DataType="{x:Type entities:Track}">
<StackPanel>
<TextBlock Text="Here's the slider:" />
<Slider Name="MySlider" Height="23" Minimum="0" />
</StackPanel>
</DataTemplate>
我需要为 Slider 的ValueChanged
事件提供事件处理方法。我不知道应该在哪里编写该代码,因为在模板中为控件指定事件处理程序是不切实际的。
我一直在搜索解决方案,发现我应该在OnApplyTemplate()
方法的覆盖中添加事件处理程序。我的猜测是它应该看起来像这样或类似的东西:
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
// Is the following initialization even going to work!?!?
Slider MySlider = this.FindName("MySlider") as Slider;
SeekSlider.ValueChanged +=
new RoutedPropertyChangedEventHandler<double>(SeekSlider_ValueChanged);
}
但是我应该在哪里写这个方法?OnApplyTemplate 覆盖是否仅适用于 ControlTemplates 还是我的方案也包括在内?我应该提供 ControlTemplate 而不是 DataTemplate 吗?我提供的方法的主体是否正确?
请帮忙。谢谢。