我在我的WPF-UI元素上使用Setter
来定义布局。
例如:
<Style TargetType="{x:Type TextBox}">
<Setter Property="Width" Value="60" />
</Style>
我还想使用它们为它们提供相同的事件处理程序,例如:
<Style TargetType="{x:Type TextBox}">
<Setter Property="GotFocus" Value="TextBox_GotFocus" />
</Style>
但似乎我不能在事件上使用Setter,只能在Properties上使用。
有没有办法使用类似于GotFocus
的内容为我的所有TextBox提供相同的Setter
事件处理程序?
答案 0 :(得分:5)
改为使用<EventSetter>
。
。