這可能是重複的問題,但我找不到解決方案,我的問題。BusyIndicator使用MVVM
我正在使用MVVM模式的WPF應用程序。
有四個視圖綁定到他們的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包含BusyIndicator控件:
<extWpfTk:BusyIndicator IsBusy="{Binding IsBusy}">
<ContentControl />
</extWpfTk:BusyIndicator>
如果設置IsBusy =在MainViewModel真,BusyIndicator控件被示出。
如果我嘗試從其他ViewModels設置IsBusy = true,則不顯示BusyIndicator。
只是要注意,我不能在MVVMLight之類的項目中使用第三方庫,以便使用他們的Messenger在ViewModels之間進行通信。
的MainView:
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;
}
}
}
僅供參考MVVMLight是開源的,您可以輕鬆地提取Messenger實施並放棄其餘 - 直接在您的解決方案中提供源代碼,因此不需要任何第三方庫。 –
@AdamHouldsworth那麼,從某種原因,當我試圖使用MVVMLight中的WeakReference類時,我得到了SecurtyException。我也嘗試了Mediator模式,但在WeakReference SecurityException中遇到了問題。 –
@GazTheDestroyer其他四個視圖不包含對MainView的引用。 –