我有一个可以采用命令行参数的WPF应用程序。我想在 ViewModel 中使用此命令行参数,我有以下选项可以做到这一点。
1) 在 app.xaml 中创建公共静态变量.cs .读取 Main 方法中的命令行参数值并将其分配给公共静态变量。可以使用 App.variablename 在视图模型中访问。
2)创建环境变量,如System.Environment.SetEnvironmentVariable("CmdLineParam","u"),然后使用Environment.GetEnvironmentVariable("CmdLineParam")在viewmodel中使用它。
我想问一下考虑到MVVM模式,哪种方法是好的,以及是否有更好的方法来实现这一目标。
这个问题与MVVM完全无关。使命令行参数可用于视图模型的一个好方法可能是(构造函数)注入服务。我们称之为IEnvironmentService
:
public interface IEnvironmentService
{
IEnumerable<string> GetCommandLineArguments();
}
然后,实现将使用 Environment.GetCommandLineArgs
(返回一个包含当前进程的命令行参数的字符串数组):
public class MyProductionEnvironmentService : IEnvironmentService
{
public IEnumerable<string> GetCommandLineArguments()
{
return Environment.GetCommandLineArgs();
}
}
然后,您的视图模型将如下所示:
public class MyViewModel
{
public MyViewModel(IEnvironmentService service)
{
// do something useful here
}
}
现在您所要做的就是在运行时创建并插入生产环境服务(自己传递它,由 IoC 容器创建它等)。并使用假/模拟进行单元测试。