通过2个ViewModel之间的通信,我遇到了问题。 在此处下载我的应用以查看问题:http://www76.zippyshare.com/v/26081324/file.html
我有2个观点。
带有datacontext'MainViewModel'的'MainView.xaml'。
使用datacontext'FirstViewModel'的'FirstView.xaml'。
MainView有一个ContentControl,其Content = FirstView。我的FirstViewModel看起来像这样:
public class FirstViewModel : ViewModelBase
{
public FirstViewModel()
{
One = "0";
Two = "0";
Ergebnis = 0;
}
private string _one;
public string One
{
get { return _one; }
set
{
if (value != null)
{
_one = value;
Calculate();
RaisePropertyChanged(() => One);
}
}
}
private string _two;
public string Two
{
get { return _two; }
set
{
_two = value;
Calculate();
RaisePropertyChanged(() => Two9;
}
}
private decimal _ergebnis;
public decimal Ergebnis
{
get { return _ergebnis; }
set
{
if (value != null)
{
if (value != _ergebnis)
{
_ergebnis = value;
RaisePropertyChanged(() => Ergebnis);
}
}
}
}
public void Calculate()
{
if (Two != null)
{
for (int i = 0; i < 500; i++)
{
Ergebnis = i;
}
Ergebnis = (decimal.Parse(One) + decimal.Parse(Two));
}
}
正如您所看到的,每次更改属性“One”或“Two”的值时,它都会调用Calculate()。我现在想要的是,当我单击MainView中的按钮时,MainViewModel必须在FirstViewModel中调用Calculate()。所以我注释掉了属性中的Calculate()并在我的MainViewModel中实现了一个RelayCommand:
MainView中的按钮
<Button Grid.Row="3" Command="{Binding ChangeValue}" />
MainViewModel
public MainViewModel
{
ChangeValue = new RelayCommand(ChangeValueCommandExecute);
}
public RelayCommand ChangeValue { get; private set; }
private FirstViewModel fwm;
private void ChangeValueCommandExecute()
{
//CurrentView = Content of the ContentControl in the MainView, which is FirstView
if (CurrentView.Content.ToString().Contains("FirstView"))
{
fwm.Calculate();
}
}
这意味着当我单击Button时,正在调用ChangeValueCommandExecute()。命令将调用fwm.Calculate()并设置新的总和(= Ergebnis)。问题是当调用Calculate()时,'One'和'Two'的值始终为“0”。那么如何在另一个ViewModel中调用ViewModel的方法?
编辑:说清楚:我想调用FirstViewModel()的方法'Calculate()'而不使用'new FirstViewModel()'!
答案 0 :(得分:2)
我无法查看您的项目,因为它需要Windows 8,但您确定FirstViewModel
DataContext
与FirstView
的{{1}}相同FirstViewModel
您在你的MainViewModel
中指的是什么?从我所看到的情况来看,您正在FirstViewModel
的私有构造函数中新建MainViewModel
。