我正在玩MVVM,了解模式中涉及的内容。我正在编写的第一个应用程序是一个非常小的应用程序,它基本上显示来自App.Config的2个设置。
我的目标是在单击按钮时能够写入此app.config。
我的问题在于我不确切地知道如何连接命令来委托这项工作,或者这是否可行。
我的App.config很直接:
<configuration>
<appSettings>
<add key="duration" value="100" />
<add key="operators" value="10" />
</appSettings>
</configuration>
模型如下:
get
{
// try to parse the setting from the configuration file
// if it fails return the default setting 0
int durationSetting = 0;
Int32.TryParse(ConfigurationManager.AppSettings["duration"], out durationSetting);
return durationSetting;
}
set
{
var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings.Remove("duration");
config.AppSettings.Settings.Add("duration", Convert.ToString(value));
ConfigurationManager.RefreshSection("appSettings");
config.Save();
}
}
所以,模型负责实际的数据访问,这就是我们想要的,对吧?
此外我有一个ViewModel(ViewModelBase实现了INotifyPropertyChanged):
public class SettingsViewModel : ViewModelBase
{
private Settings Settings { get; set; }
private SaveCommand saveCommand = new SaveCommand();
public ICommand SaveCommand
{
get
{
return saveCommand;
}
}
public SettingsViewModel(Settings settings)
{
if (settings == null)
throw new ArgumentNullException("Settings", "Settings cannot be null");
Settings = settings;
}
public int Duration
{
get { return Settings.Duration; }
set
{
if (Settings.Duration != value)
{
Settings.Duration = value;
RaisePropertyChanged("Duration");
}
}
}
视图是一个xaml usercontrol,实例化如下:
public partial class MainWindow : Window
{
public SettingsViewModel SettingsViewModel { get; set; }
public MainWindow()
{
InitializeComponent();
DataContext = this;
Settings settings = new Settings();
SettingsViewModel = new SettingsViewModel(settings);
}
}
最后有一个SaveCommand实现了ICommand,此时基本上是空的。我已将命令连接到视图中的按钮。
但基本上,现在是什么?处理价值观的最佳方法是什么? 我正在努力的例子是否过于人为?
答案 0 :(得分:1)
我建议使用非常有用的MVVM Light toolkit。
基本上,您将公开一个ICommand
公共属性,该属性返回RelayCommand
的实例:
private RelayCommand myCommand;
public ICommand MyCommand
{
get
{
return this.myCommand;
}
}
...
// in constructor of the view model:
this.myCommand = new RelayCommand(this.MyCommandImplementation);
...
private void MyCommandImplementation()
{
// Save your parameters here from your model
}
您的代码中有些奇怪的是,您实际上已将设置保存在名为Duration
的公共属性的setter中。
您可以做的是(为了防止每次修改属性时保存)是在ViewModel中使用私有变量:
private int duration;
public int Duration
{
get { return this.duration; }
set
{
if (this.duration != value)
{
this.duration = value;
RaisePropertyChanged("Duration");
}
}
}
因此,当您修改绑定到Duration
属性的UI字段时,只会更新私有duration
字段。因此,您只能将其保存到MyCommandImplementation
方法中的app.config文件中。
private void MyCommandImplementation()
{
this.Settings.Duration = this.Duration;
}
另请注意,您的Settings
管理有点复杂(您删除然后再次添加设置,为什么?)。
最后一件事:在您看来,您当前正在将视图本身用作datacontext。您必须改为指定ViewModel:
this.SettingsViewModel = new SettingsViewModel(settings);
this.DataContext = this.SettingsViewModel;
另外,我不认为你的视图的作用是实例化你的模型。我会改为从ViewModel中实例化Settings
。
答案 1 :(得分:0)
您需要做的就是在类中实现ICommand接口,并将SaveCommand属性设置为此类的实例。您可以使用某些第三方命令类,如棱镜库的DelegateCommand或RelayCommand。 有关ICommand的示例实现,请参阅以下网页; http://weblogs.asp.net/fredriknormen/archive/2010/01/03/silverlight-4-make-commanding-use-lesser-code.aspx
然后要采用的行动应在命令中登记;
this.SaveCommand= new SaveCommand((o) =>
{
//change the model
});