C#让pc睡眠或休眠

时间:2010-01-17 02:59:26

标签: c# hibernate sleep

我想将我的系统置于睡眠或休眠状态,两种不同的选择。

我如何使用API​​执行此操作,我真的不想使用Process,这不允许我选择我想要的操作方法。

1 个答案:

答案 0 :(得分:49)

// Hibernate
Application.SetSuspendState(PowerState.Hibernate, true, true);
// Standby
Application.SetSuspendState(PowerState.Suspend, true, true);

或者,如果您喜欢系统调用:

[DllImport("Powrprof.dll", CharSet=CharSet.Auto, ExactSpelling=true)]
public static extern bool SetSuspendState(bool hiberate, bool forceCritical, bool disableWakeEvent);

// Hibernate
SetSuspendState(true, true, true);
// Standby
SetSuspendState(false, true, true);