必要な Windows フォーム アプリケーションを作成するのに十分なリソースを見つけるのに苦労しています。タイトルにあるように、コンピューターをシャットダウンするタイマーを設定できるアプリケーションを作成したいと考えています。例やヘルプをいただければ幸いです。
編集:現在の日付/時刻ボタンと個々のシャットダウンボタンを配置することができたので、問題は、プログラムの実行中にシャットダウン時にタイマーを設定する方法がわからないことです。
これまでに私が入れたものは次のとおりです。
パブリック部分クラス Form1 : Form { public Form1() { InitializeComponent(); }
private void buttonTimerStart_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
labelDate.Text = DateTime.Now.ToString();
}
private void buttonTimerStop_Click(object sender, EventArgs e)
{
timer1.Stop();
}
private void buttonShutdown_Click(object sender, EventArgs e)
{
Process.Start("Shutdown", "-s -t 0");
}