在事件上使用Setter

时间:2011-03-14 20:17:45

标签: wpf events user-interface

我在我的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事件处理程序?

1 个答案:

答案 0 :(得分:5)

改为使用<EventSetter>