如何使用xaml将父用户控件的对象引用传递给ViewModel?
我有一个用户控件,比如说 TextboxPage,它与 ViewModel、TextboxPageViewModel 关联。我需要在 TextboxPageViewModel 中获取 TextboxPage 的引用。
即
<Button x:Name="btnCustomer"
Command="{Binding CustomerCommand}"
CommandParameter="{Binding...?}"/>
如何在 xaml 中进行绑定以传递 UserControl、TextboxPage 的引用?
I have a User Control, let's say TextboxPage and it's associated with ViewModel, TextboxPageViewModel. I need to get reference of TextboxPage in TextboxPageViewModel.
i.e.
<Button x:Name="btnCustomer"
Command="{Binding CustomerCommand}"
CommandParameter="{Binding...?}"/>
How can I do binding in xaml to pass the reference of UserControl, TextboxPage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将适用于您的情况:
干杯!
This will work in your case:
cheers!