我已经创建了一个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.cs
和ViewModel.cs
,它们已经绑定到MainWindow的DataContext,如何绑定一个名为SomeCommand
的命令(实现为ICommand
)到里面没有任何按钮的用户控件?