7

免责声明:我在 MVVM/MVC/MVP/MVWhatever 方面没有经验,这是我第一次尝试使用任何UI 分离模式。

启动时,我的应用程序需要从配置文件加载数据,这是应用程序工作所必需的。

目前,我正在读取启动时的配置文件App.xaml.cs,并将文件的内容传递给视图模型:

public partial class App : Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);

        string configFile = "settings.txt";
        string[] config = File.ReadAllLines(configFile);

        var window = new MainWindow();
        var viewmodel = new MainWindowViewModel(config);
        window.DataContext = viewmodel;
        window.Show();
    }
}

1.这是“正确”的MVVM方式吗?
我确信这种方式比直接在视图模型中读取文件更好(这就是我首先这样做的方式),但我不确定是否App.xaml.cs是读取配置文件的正确位置。

2. 我在哪里/如何处理错误?
配置文件中的数据对应用程序至关重要。
因此,如果文件丢失或为空,或者文件中的数据无效,那么我需要显示错误消息并退出应用程序。

我的第一次尝试也是把它放进去App.xaml.cs

public partial class App : Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);

        string configFile = "settings.txt";

        if (!File.Exists(configFile))
        {
            MessageBox.Show("config file missing");
            Application.Current.Shutdown();
            return;
        }

        string[] config = File.ReadAllLines(configFile);

        if (config.Count() == 0)
        {
            MessageBox.Show("config file empty");
            Application.Current.Shutdown();
            return;
        }

        var window = new MainWindow();
        var viewmodel = new MainWindowViewModel(config);
        window.DataContext = viewmodel;
        window.Show();
    }
}

但这对我来说看起来并不“正确”。我已经对在那里加载文件感到不舒服(参见第一个示例),所以情况更糟。

注意:我知道我可能不应该直接Messagebox.Show在这里打电话。
请注意,这不是我在这里要问的——我知道我应该用更类似于 MVVM 的东西来替换它,但重点是:我仍然必须从某个地方调用它(然后关闭应用程序)。
我真正想知道的是这是否App.xaml.cs是正确的地方!

3. 另外,我还有另一种错误要处理:
配置文件的实际解析是由模型完成的(模型是现有库的一部分,我在这里构建的 WPF 应用程序只是一个不错的 UI ) .
因此,视图模型创建模型的实例并调用解析方法……如果配置文件中的数据无效,则会引发异常。

我该如何处理这个“MVVM方式”?
只是在视图模型中捕获异常并从那里关闭整个应用程序对我来说是错误的。


编辑:

要回答 Will 关于我为什么不使用的评论app.config

我正在使用“特殊”配置文件,因为我需要从那里加载几个命名的“集合”值对。这是一个示例文件
基本上,它是一个Dictionary<string, List<ClassWithTwoStringProperties>>.

  1. AFAIK,app.config不支持这样的数据,所以我唯一能做的就是将整个事情保存为一个 blob 中的一个属性app.config,并且仍然自己进行解析。
    --> 所以我仍然需要从 WPF 应用程序的某个地方调用解析。
  2. 我想要一种简单的、人工可编辑的格式
  3. WPF 应用程序只是一个不错的库 UI,我还需要库中的配置文件
4

1 回答 1

4

我认为,这种方式是不正确的。

您应该考虑app.config任何持久数据(例如数据库、文件)。如果您想以 MVVM 方式访问持久化数据,您应该编写一个服务(类似于)并从您的代码中IApplicationDataService调用此服务实现。MainWindowViewModel如果您从某些服务中找到此服务ServiceLocator或通过 IoC 容器注入它,它将更加 MVVMish - 这有助于稍后编写单元测试。

服务的实现应该返回视图模型初始化模型实例。像这样的东西:

public ApplicationDataService : IApplicationDataService
{
  public ApplicationModel LoadApplicationData()
  {
      // process app.config here
  } 
}

public ViewModelBase<TModel>
{
  public TModel Model
  {
    get { return model.Value; }
  }
  private readonly Lazy<TModel> model = new Lazy(GetModel);

  protected abstract TModel GetModel();
}

public MainWindowViewModel<ApplicationModel> : ViewModelBase
{
   protected override ApplicationModel GetModel()
   {
      try
      {
        var dataService = ServiceLocator.GetService<IApplicationDataService>();
        return dataService.LoadApplicationData();
      }
      catch (AnyException e)
      {
         // oops!
      }
   }
}
于 2012-08-19T18:10:11.953 回答