这可能是重复的问题,但是我找不到我的问题的解决方案。

我正在使用MVVM模式开发WPF应用程序。

有四个 View 绑定(bind)到它们的ViewModels。所有ViewModel都有BaseViewModel作为父级。

public abstract class ViewModelBase : INotifyPropertyChanged
{
    private bool isbusy;

    public bool IsBusy
    {
        get
        {
            return isbusy;
        }
        set
        {
            isbusy = value;
            RaisePropertyChanged("IsBusy");
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected void RaisePropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;

        if (handler != null)
        {
            handler(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

MainView包含BusyIndi​​cator:
<extWpfTk:BusyIndicator IsBusy="{Binding IsBusy}">
        <ContentControl />
    </extWpfTk:BusyIndicator>

如果在MainViewModel中将IsBusy设置为true,则会显示BusyIndi​​cator。

如果我尝试从其他ViewModels设置IsBusy = true,则不会显示BusyIndi​​cator。

请注意,我无法在我的项目中使用MVVMLight之类的第三方库来使用其Messenger在ViewModel之间进行通信。

主 View :
public class MainWindowViewModel : ViewModelBase
{
    public ViewModel1 ViewModel1 { get; set; }
    public ViewModel2 ViewModel2 { get; set; }
    public ViewModel3 Model3 { get; set; }

    public MainWindowViewModel()
    {
        ViewModel1 = new ViewModel1();
        ViewModel2 = new ViewModel2();
        ViewModel3 = new ViewModel3();
        //IsBusy = true; - its working
    }
}

ViewModel1:
public class ViewModel1 : ViewModelBase
{
    RelayCommand _testCommand;

    public ViewModel1()
    {
    }

    public ICommand TestCommand
    {
        get
        {
            if (_testCommand == null)
            {
                _testCommand = new RelayCommand(
                    param => this.Test(),
                    param => this.CanTest
                    );
            }
            return _testCommand;
        }
    }

    public void Test()
    {
        //IsBusy = true; - BusyIndicator is not shown

    }

    bool CanTest
    {
        get
        {
            return true;
        }
    }
}

最佳答案

   public class MainWindowViewModel : ViewModelBase
   {
    public ViewModel1 ViewModel1 { get; set; }
    public ViewModel2 ViewModel2 { get; set; }
    public ViewModel3 Model3 { get; set; }

    public MainWindowViewModel()
    {
        ViewModel1 = new ViewModel1();
        ViewModel2 = new ViewModel2();
        ViewModel3 = new ViewModel3();
        ViewModel1.PropertyChanged += (s,e) =>
        {
           if(e.PropertyName == "IsBusy")
           {
              // set the MainWindowViewModel.IsBusy property here
              // for example:
              IsBusy = ViewModel1.IsBusy;
           }
         }
    //IsBusy = true; - its working
   }
}

对所有viewModel重复订阅。

当您不需要更多事件时,别忘了取消订阅这些事件,以避免内存泄漏。

您的问题是:您绑定(bind)到MainWindowViewModel的属性,而不是内部ViewModel的属性。

08-16 00:27