예제 #1
0
 private void clientInfoContext_Click(object sender, EventArgs e)
 {
     if (currentServer != null)
     {
         Player          P        = (Player)playerListBox.SelectedItem;
         clientInfoPopup newPopup = new clientInfoPopup(currentServer.Console.dumpUser(P.Name), P.Name);
         newPopup.Show();
     }
 }
예제 #2
0
파일: mainWindow.cs 프로젝트: RaidMax/qRCON
 private void clientInfoContext_Click(object sender, EventArgs e)
 {
     if (currentServer != null)
     {
         Player P = (Player)playerListBox.SelectedItem;
         clientInfoPopup newPopup = new clientInfoPopup (currentServer.Console.dumpUser (P.Name), P.Name);
         newPopup.Show ();
     }
 }