我有一个用户控件,让我们说TextboxPage,它与ViewModel,TextboxPageViewModel相关联。我需要在TextboxPageViewModel中引用TextboxPage。
即
<Button x:Name="btnCustomer"
Command="{Binding CustomerCommand}"
CommandParameter="{Binding...?}"/>
如何在xaml中进行绑定以传递UserControl,TextboxPage的引用?
答案 0 :(得分:2)
这适用于您的情况:
<Button x:Name="btnCustomer"
Command="{Binding CustomerCommand}"
CommandParameter="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}"/>
喝彩!