在 XAML 中绑定 XAML 用户控件
我有两个用户控件:主要和设置。 在某些控件的 Main 中,我想将 XAML 中的 CommandParameter 设置为 Settings。在 C# 中,代码很简单,例如:
biSettings.CommandParameter = new Settings();
如何在 XAML 中做到这一点?
CommandParameter="???"
设置有自己的模型,我正在使用 MVVM。我在这里找到了解决方案Binding UserControl in XAML,但是不清楚MVVM,因为在VM中是MV ! 我正在使用 Silverlight 4。
I have two UserControls: Main nad Settings.
In Main in some control I want to set CommandParameter in XAML to Settings. In C# code is simple, like:
biSettings.CommandParameter = new Settings();
How can I do that in XAML?
CommandParameter="???"
The Settings has own model I'm using MVVM. I found solutions here Binding UserControl in XAML, but It is not clear MVVM because in VM is MV!
I'm using Silverlight 4.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设该控件是一个按钮,你可以这样:
Let's say the control is a Button, you could so something like this: