コード例 #1
0
ファイル: ReloadCommand.cs プロジェクト: vansickle/dbexplorer
 public ReloadCommand(ConnectionViewModel model)
 {
     this.model = model;
 }
コード例 #2
0
 public DefragmentCommand(ConnectionViewModel connectionViewModel)
 {
     this.connectionViewModel = connectionViewModel;
 }
コード例 #3
0
 public ConnectCommand(ConnectionViewModel model)
 {
     this.model = model;
     model.PropertyChanged += new PropertyChangedEventHandler(model_PropertyChanged);
 }