如何在不包含任何Button的UserControl中设置“ Command”属性?

时间:2019-07-05 03:55:14

标签: c# wpf

我已经创建了一个UserControl SomeUC,如下所示:

<!---This UserControl does not contain any Button--->
<UserControl ...>
    <Grid>
        <Border>
             <Textblock Text="HelloWorld" />
        </Border>
    </Grid>
</UserControl>

并且我想在MainWindow中使用它,以便我在MainWindow中单击用户控件后可以运行某些方法:

<Window ...>
    <Grid>
        <uc:SomeUC />  <!---How to properly bind a Command to this uc?--->
    </Grid>
</Window>

假设我已经很好地配置了Command.csViewModel.cs,它们已经绑定到MainWindow的DataContext,如何绑定一个名为SomeCommand的命令(实现为ICommand)到里面没有任何按钮的用户控件?

0 个答案:

没有答案