大家好,我是个WINCE开发的新手.
C#编写WM6程序,请问,怎么实现重启PDA的功能.
谢谢!
------解决方案--------------------
[DllImport( "Aygshell.dll ")]
public static extern bool ExitWindowsEx(uint uFlags, int dwReserved);
private void button2_Click(object sender, EventArgs e)
{
ExitWindowsEx(2, 1);
}
------解决方案--------------------
第一个参数uFlags只能是EWX_POWEROFF或者EWX_REBOOT。而且PPC不支持EWX_POWEROFF。
第二个参数保留,不使用。