コード例 #1
0
        private void shutdownToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ListViewItem item         = ListViewComps.SelectedItems[0];
            ShutDownForm shutdownform = new ShutDownForm(this, pythonListener, item);

            shutdownform.ShowDialog();
        }
コード例 #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();
        }
コード例 #3
0
ファイル: MainForm.cs プロジェクト: Madajo/Wake_On_Lan
        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();

        }
コード例 #4
0
ファイル: MainForm.cs プロジェクト: Madajo/Wake_On_Lan
 private void shutdownToolStripMenuItem_Click(object sender, EventArgs e)
 {
     ListViewItem item = ListViewComps.SelectedItems[0];
     ShutDownForm shutdownform = new ShutDownForm(this, pythonListener, item);
     shutdownform.ShowDialog();
 }