示例#1
0
文件: frmMain.cs 项目: cr4ck32/xRAT
 private void ctxtShowMessagebox_Click(object sender, EventArgs e)
 {
     if (lstClients.SelectedItems.Count != 0)
     {
         Client c = (Client)lstClients.SelectedItems[0].Tag;
         if (c.Value.frmSM != null)
         {
             c.Value.frmSM.Focus();
             return;
         }
         frmShowMessagebox frmSM = new frmShowMessagebox(c);
         frmSM.Show();
     }
 }
示例#2
0
文件: frmMain.cs 项目: nhz2f/xRAT
 private void ctxtShowMessagebox_Click(object sender, EventArgs e)
 {
     if (lstClients.SelectedItems.Count != 0)
         {
             Client c = (Client)lstClients.SelectedItems[0].Tag;
             if (c.Value.frmSM != null)
             {
                 c.Value.frmSM.Focus();
                 return;
             }
             frmShowMessagebox frmSM = new frmShowMessagebox(c);
             frmSM.Show();
         }
 }