예제 #1
0
 public void UpdateCtrlWithCfg(ABTACfg cfg)
 {
     tbxGameFolderPath.Text  = cfg.GameFolderPath;
     tbxGameRunFilePath.Text = cfg.GameRunFilePath;
     tbxGameRunFileArgs.Text = cfg.GameRunFileArgs;
 }
예제 #2
0
 public void UpdateCfgWithCtrl(ABTACfg cfg)
 {
     cfg.GameFolderPath  = tbxGameFolderPath.Text;
     cfg.GameRunFilePath = tbxGameRunFilePath.Text;
     cfg.GameRunFileArgs = tbxGameRunFileArgs.Text;
 }