使用 mvvm 将命令绑定到 silverlight 4 中的按钮

发布于 2024-09-02 05:37:38 字数 708 浏览 5 评论 0原文

我有一个名为 HomePage.xaml 的用户控件。我正在页面构造函数的代码隐藏文件中创建一个模型实例(使用 MVVM 模式),因为

MainViewModel model = new MainViewModel();

我在 HomePage.xaml 中有一个按钮,我想将其绑定到 内的命令MainViewModel 调用了 GetData() 并希望填充数据网格中的数据。 MainViewModel 有一个 ObservableCollection,我将用它来绑定数据网格中的数据。

在不绑定命令的情况下填充数据网格中的数据效果很好。

我将按钮绑定为:

<StackPanel x:Name="stkPanelInput" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
<Button x:Name="buttonGetData" Width="70" Content="GetData" Command="{Binding GetData}"  Click="buttonGetData_Click"/>
</StackPanel>

如何使用 MVVM 绑定命令?

I have a user control called HomePage.xaml. I'm creating a model instance (using MVVM pattern) in the code behind file in the constructor of page as

MainViewModel model = new MainViewModel();

I have a button in HomePage.xaml which I want to bind to the command inside MainViewModel called GetData() and want to populate the data in datagrid. MainViewModel has an ObservableCollection which I would use to bind the data in datagrid.

Populating the data in datagrid without binding command works fine.

I'm binding the button as:

<StackPanel x:Name="stkPanelInput" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
<Button x:Name="buttonGetData" Width="70" Content="GetData" Command="{Binding GetData}"  Click="buttonGetData_Click"/>
</StackPanel>

How shall I bind the command using MVVM?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮生面具三千个 2024-09-09 05:37:38

就像 Archie 所说,将页面的 DataContext 设置为 MainViewModel 的实例。

DataContext = model;

然后你的 XAML 看起来像这样:

<StackPanel x:Name="stkPanelInput" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
<Button x:Name="buttonGetData" Width="70" Content="GetData" Command="{Binding GetDataCommand}"  Click="buttonGetData_Click"/>
</StackPanel>

Like Archie said, set the DataContext of your page to the instance of your MainViewModel.

DataContext = model;

Then you have your XAML look like this:

<StackPanel x:Name="stkPanelInput" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
<Button x:Name="buttonGetData" Width="70" Content="GetData" Command="{Binding GetDataCommand}"  Click="buttonGetData_Click"/>
</StackPanel>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文