将ClickEventHandler添加到模板中的自定义控件

时间:2014-10-29 06:19:10

标签: c# wpf xaml

DataTemplate中,我有一个自定义UserControl MyButton,如下所示:

<DataTemplate DataType="{x:Type local:MyFileInfo}">
    <Grid>
        <!--Grid Definitions-->
        <!--... other controls-->
        <Viewbox Grid.Column="2">
            <local:MyButton Grid.Column="2" Text="{Binding Path=Copies, Mode=TwoWay}"/>
        </Viewbox>
    </Grid>
</DataTemplate>

如何将ClickEventHandler添加到MyButton?请注意,此处理函数不在MyButton的代码隐藏中。谢谢!

0 个答案:

没有答案