Exemplo n.º 1
0
        private void shutdownToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ListViewItem item         = ListViewComps.SelectedItems[0];
            ShutDownForm shutdownform = new ShutDownForm(this, pythonListener, item);

            shutdownform.ShowDialog();
        }
Exemplo n.º 2
0
        private void ShutDownAll_Click(object sender, EventArgs e)
        {
            ListViewItem item = new ListViewItem("All");

            item.SubItems.Add("All");
            ShutDownForm shutdownform = new ShutDownForm(this, pythonListener, item);

            shutdownform.ShowDialog();
        }
Exemplo n.º 3
0
        private void ShutDownAll_Click(object sender, EventArgs e)
        {
            ListViewItem item = new ListViewItem("All");
            item.SubItems.Add("All");
            ShutDownForm shutdownform = new ShutDownForm(this, pythonListener, item);
            shutdownform.ShowDialog();

        }
Exemplo n.º 4
0
 private void shutdownToolStripMenuItem_Click(object sender, EventArgs e)
 {
     ListViewItem item = ListViewComps.SelectedItems[0];
     ShutDownForm shutdownform = new ShutDownForm(this, pythonListener, item);
     shutdownform.ShowDialog();
 }