我创建一个执行某些工作的线程并运行shutdown.exe来关闭pc。
Worker work = new Worker();
Thread thread = new Thread(new ThreadStart(work.DoWork));
thread.Start();
和方法DoWork()
public void DoWork()
{
/* Do some thing */
// This will shutdown the PC
ProcessStartInfo startInfo = new ProcessStartInfo(Environment.GetFolderPath(System.Environment.SpecialFolder.System) + @"\shutdown.exe", "-s -t 5");
Process.Start(startInfo);
}
如果我在主线程中调用方法work.DoWork(),PC将关闭。 但是,如果我使用thread.Start()将其放入线程中,则pc将不会关闭。
编辑: 发现我的错误。我创建了一个线程安全的调用方法来读取总是返回false的复选框
delegate bool GetcbShutdownCheckedValueCallback();
public bool GetcbShutdownCheckedValue()
{
// InvokeRequired required compares the thread ID of the
// calling thread to the thread ID of the creating thread.
// If these threads are different, it returns true.
if (this.lblCraftRemain.InvokeRequired)
{
GetcbShutdownCheckedValueCallback d = new GetcbShutdownCheckedValueCallback(GetcbShutdownCheckedValue);
this.Invoke(d);
}
else
{
return cbShutdown.Checked;
}
return false;
}
我调用方法检查复选框是否已选中然后关闭。所以实际上代码没有被执行。
答案 0 :(得分:0)
如果要关闭计算机,最好调用Win32的ExitWindows
函数,而不是运行shutdown.exe
程序。
这里有MSDN文档:http://msdn.microsoft.com/en-us/library/windows/desktop/aa376867%28v=vs.85%29.aspx
此处的C#P / Invoke签名:http://www.pinvoke.net/default.aspx/user32.exitwindowsex