コード例 #1
0
ファイル: LibraryViewModel.cs プロジェクト: hannuraina/tag
    public LibraryViewModel(IEventAggregator e)
    {
      eventAggregator = e;

      library = new Release();
      Description = "Initialize application";
      DisplayName = "Library";
    }
コード例 #2
0
ファイル: LibraryViewModel.cs プロジェクト: hannuraina/tag
 // TODO: Move to background thread
 public void LoadLibrary()
 {
   library = new Release(LibraryPath);
 }