定时关机小程序C#源代码.docx_第1页
定时关机小程序C#源代码.docx_第2页
定时关机小程序C#源代码.docx_第3页
定时关机小程序C#源代码.docx_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Runtime.InteropServices;using System.Diagnostics;namespace ShutDownComputer public partial class MainForm : Form public MainForm() InitializeComponent(); t.Interval = 1000; t.Tick+=new EventHandler(t_Tick); t.Start(); Timer t = new Timer(); void t_Tick(object sender, EventArgs e) labelNowTime.Text = DateTime.Now.ToString(); DllImport(user32.dll, EntryPoint = ExitWindowsEx, CharSet = CharSet.Ansi) private static extern int ExitWindowsEx(int uFlags,int dwReserved); private void 注销ToolStripMenuItem_Click(object sender, EventArgs e) ExitWindowsEx(0,0); /定义关机方法 private void ShutDown() Process myProcess = new Process(); myProcess.StartInfo.FileName = cmd.exe; myProcess.StartInfo.UseShellExecute = false; myProcess.StartInfo.RedirectStandardInput = true; myProcess.StartInfo.RedirectStandardOutput = true; myProcess.StartInfo.RedirectStandardError = true; myProcess.StartInfo.CreateNoWindow = true; myProcess.Start(); /启动进程 myProcess.StandardInput.WriteLine(shutdown -s -t 0); /定义最小化方法 private void HideMainForm() this.Hide(); /定义显示方法 private void ShowMainForm() this.Show(); this.WindowState = FormWindowState.Normal; this.Activate(); private void 关机ToolStripMenuItem_Click(object sender, EventArgs e) ShutDown();/调用关机方法 private void 关机重启ToolStripMenuItem_Click(object sender, EventArgs e) Process myProcess = new Process(); myProcess.StartInfo.FileName = cmd.exe; myProcess.StartInfo.UseShellExecute = false; myProcess.StartInfo.RedirectStandardInput = true; myProcess.StartInfo.RedirectStandardOutput = true; myProcess.StartInfo.RedirectStandardError = true; myProcess.StartInfo.CreateNoWindow = true; myProcess.Start(); myProcess.StandardInput.WriteLine(shutdown -r -t 0); private void 退出程序ToolStripMenuItem1_Click(object sender, EventArgs e) this.Close(); Application.Exit(); private void 重新设定ToolStripMenuItem_Click(object sender, EventArgs e) numericUpDownHour.Value = 1; numericUpDownMinute.Value = 1; numericUpDownSecond.Value = 30; numericUpDownHour.Focus(); timer.Stop(); private void 计时开始ToolStripMenuItem_Click(object sender, EventArgs e) timer.Interval = 1000; timer.Tick += new EventHandler(timer_Tick); timer.Start(); HideMainForm(); Timer timer = new Timer(); void timer_Tick(object sender, EventArgs e) if (numericUpDownSecond.Value = 0) if (numericUpDownMinute.Value = 0) if (numericUpDownHour.Value = 0) timer.Stop(); ShutDown(); else numericUpDownHour.Value-; numericUpDownMinute.Value = 60; else numericUpDownMinute.Value-; numericUpDownSecond.Value = 59; else numericUpDownSecond.Value-; private void 版本信息ToolStripMenuItem_Click(object sender, EventArgs e) MessageBox.Show(软件名称:定时关机工具n开发环境:Microsoft Visual Studio 2010n版本号:H4GRG68X82 (*_*); private void 隐藏窗体ToolStripMenuItem_Click(object sender, EventArgs e) HideMainForm(); private void notifyIcon_MouseDoubleClick(object sender, MouseEventArgs e) if (this.WindowState = FormWindowState.Normal) this.WindowState = FormWindowState.Minimized; HideMainForm(); else if (this.WindowState = FormWindowState.Minimized) ShowMainForm(); /点击最小化按钮时,最小化到托盘 private void MainForm_SizeChanged(object sender, EventArgs e) if (this.WindowState = FormWindowState.Minimized) HideMainForm(); /以下是为NotifyIcon控件添加的ContextMenuStrip控件的右键按钮事件 private void menuItem_Show_Click(object sender, EventArgs e) ShowMainForm(); private void menuItem_Hide_C

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论