コード例 #1
0
ファイル: Controller.cs プロジェクト: lelmarir/CmisSync
 internal CmisSync.Lib.Config.SyncConfig.Account createNewAccount()
 {
     CmisSync.Lib.Config.SyncConfig.Account account = new Config.SyncConfig.Account();
     Views.AccountWindow w = new Views.AccountWindow(new ViewModels.AccountViewModel(this, account));
     w.ShowDialog();
     return account;
 }
コード例 #2
0
ファイル: AccountViewModel.cs プロジェクト: lelmarir/CmisSync
 public AccountViewModel(Controller controller, Config.SyncConfig.Account account)
     : this(controller)
 {
     this._account = account;
 }