InvokeBulkMove() private method

private InvokeBulkMove ( int room ) : void
room int
return void
コード例 #1
0
ファイル: RaidsPanel.cs プロジェクト: yprovost/outwar-dca
 private void btnAdventuresGo_Click(object sender, EventArgs e)
 {
     if (mUI.AccountsPanel.CheckedIndices.Count < 1)
     {
         mUI.LogPanel.Log("E: Check the accounts you want to move.");
         return;
     }
     if (FocusedRaid == null)
     {
         mUI.LogPanel.Log("E: Choose an adventure to move to.");
         return;
     }
     mUI.InvokeBulkMove(int.Parse(FocusedRaid.SubItems[1].Text));
 }