ViewModel 更改时窗口不会更新

发布于 2024-11-02 16:53:34 字数 806 浏览 0 评论 0原文

我有一个使用 MVVM 的 WPF 应用程序;当我更改主窗口 ViewModel 类中的 ViewModel 时,新的用户控件不会显示在窗口中...原始用户控件仍然存在。 ViewModel 看起来像这样:

公共类 MainWindowViewModel :ViewModelBase {

    public ViewModelBase Workspace;

    public MainWindowViewModel()
    {
        var w = new CustomerDetailsViewModel();

        SetActiveWorkspace(w);
    }

    void NavigationService_ViewChanged(object sender, ViewChangedEventArgs e)
    {
        SetActiveWorkspace(e.View);
    }

    void SetActiveWorkspace(ViewModelBase workspace)
    {
        Workspace = workspace;
    }
}

我的 XAML 如下所示: <代码> < ContentControl Content="{绑定路径=工作区}" > 导航服务 ViewChanged 事件正在触发,并且

正在使用参数中的正确视图调用 SetActiveWorkspace 方法。但是,此后,视图不会重新加载。我在这里缺少什么?

I have a WPF application using MVVM; when I change the ViewModel in my main window ViewModel class, the new user control is not displayed in the window... the original one remains. The ViewModel looks like this:


public class MainWindowViewModel : ViewModelBase
{

    public ViewModelBase Workspace;

    public MainWindowViewModel()
    {
        var w = new CustomerDetailsViewModel();

        SetActiveWorkspace(w);
    }

    void NavigationService_ViewChanged(object sender, ViewChangedEventArgs e)
    {
        SetActiveWorkspace(e.View);
    }

    void SetActiveWorkspace(ViewModelBase workspace)
    {
        Workspace = workspace;
    }
}

My XAML looks like this:

< ContentControl Content="{Binding Path=Workspaces}" >

The navigation service ViewChanged event is firing, and the SetActiveWorkspace method is being called with the correct view in the argument. However, after that, the view is not reloaded. What am I missing here?

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

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

发布评论

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

评论(1

厌倦 2024-11-09 16:53:34

您的工作区属性未引发 PropertyChanged 事件。它应该看起来像这样:

private ViewModelBase _workspace;

public ViewModelBase Workspace
{
    get { return _workspace; }
    set 
    {
        if (value != _workspace)
        {
            _workspace = value;

            // This raises the PropertyChanged event to let the UI know to update
            OnPropertyChanged("WorkSpace");
        }
    }
}

确保您的 ViewModelBase 实现了 INotifyPropertyChanged

Your Workspace property is not raising the PropertyChanged event. It should look like this:

private ViewModelBase _workspace;

public ViewModelBase Workspace
{
    get { return _workspace; }
    set 
    {
        if (value != _workspace)
        {
            _workspace = value;

            // This raises the PropertyChanged event to let the UI know to update
            OnPropertyChanged("WorkSpace");
        }
    }
}

Make sure your ViewModelBase implements INotifyPropertyChanged

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文