我开始使用MVVM构建Silverlight应用程序。
我在XAML页面上有一个按钮,可以在单击时保存数据。我编写了以下代码。
<Button Content="Save" Grid.Column="2" Grid.Row="3"
Command="{Binding Path=SaveCourse}"/>
在 View 模型类中,我隐含以下代码;
public class SaveCurrentCourse : ICommand
{
private MaintenanceFormViewModel viewModel;
public SaveCurrentCourse(MaintenanceFormViewModel viewModel)
{
this.viewModel = viewModel;
this.viewModel.PropertyChanged += (s, e) =>
{
if (this.CanExecuteChanged != null)
{
this.CanExecuteChanged(this, new EventArgs());
}
};
}
public bool CanExecute(object parameter)
{
return this.viewModel.CurrentCourse != null;
}
public event EventHandler CanExecuteChanged;
public void Execute(object parameter)
{
this.viewModel.SaveCourseImplementation();
}
}
我的save命令适合哪种工作。
我的问题是,如果页面上有多个按钮,那么是否需要为每个按钮编写与上面相同的代码?
任何机构都可以提出更好的方法吗?
最佳答案
微软的模式和实践团队提供了一个名为Prism的库,可以在某种程度上简化这一过程。 http://compositewpf.codeplex.com/
它们提供了一个称为DelegateCommand
的类,该类实现ICommand
并允许您传递要执行的方法名称。
public class Test {
public Test(){
SomeCommand = new DelegateCommand<object>(DoSomething);
}
public DelegateCommand<object> SomeCommand { get; private set;}
private void DoSomething(object parameter){
//Do some stuff
}
}
然后,您可以将控件的Command属性绑定(bind)到
SomeCommand
。您还可以将CommandParameter绑定(bind)到某些对象,它将作为参数传递给DoSomething方法。 DelegateCommand的其他构造函数允许您将CanExecute方法作为第二个参数传递,这将启用/禁用控件。如果您需要更新控件的启用/禁用状态,则可以调用DelegateCommand的RaiseCanExecuteChanged()
方法。public class Test {
public Test(){
SomeCommand = new DelegateCommand<object>(DoSomething, (enabled) => CanSave());
}
public DelegateCommand<object> SomeCommand { get; private set;}
private void DoSomething(object parameter){
//Do some stuff
}
private bool CanSave(){
if(/*test if the control should be enabled */)
return true;
else
return false;
}
private void DoABunchOfStuff(){
//something here means the control should be disabled
SomeCommand.RaiseCanExecuteChanged();
}
}
关于mvvm - MVVM中的Silverlight多命令绑定(bind),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4837804/