Windows 窗体中的电源管理
Windows 窗体应用程序可以利用 Windows 操作系统中的电源管理功能。 应用程序可以监视计算机的电源状态,并在发生状态更改时采取措施。 例如,如果应用程序在便携式计算机上运行,你可能希望在计算机电池电量低于特定级别时禁用应用程序中的某些功能。
.NET Framework 提供了一个 PowerModeChanged 事件,只要电源状态发生变化(例如用户挂起或恢复操作系统时,或者交流电源状态或电池状态发生变化时),就会发生该事件。 SystemInformation 类的 PowerStatus 属性可用于查询当前状态,如下面的代码示例所示。
public Form1()
{
InitializeComponent();
SystemEvents.PowerModeChanged += new PowerModeChangedEventHandler(SystemEvents_PowerModeChanged);
}
void SystemEvents_PowerModeChanged(object sender, PowerModeChangedEventArgs e)
{
switch (SystemInformation.PowerStatus.BatteryChargeStatus)
{
case System.Windows.Forms.BatteryChargeStatus.Low:
MessageBox.Show("Battery is running low.", "Low Battery", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
break;
case System.Windows.Forms.BatteryChargeStatus.Critical:
MessageBox.Show("Battery is critcally low.", "Critical Battery", MessageBoxButtons.OK, MessageBoxIcon.Stop);
break;
default:
// Battery is okay.
break;
}
}
Public Sub New()
InitializeComponent()
AddHandler Microsoft.Win32.SystemEvents.PowerModeChanged, AddressOf PowerModeChanged
End Sub
Private Sub PowerModeChanged(ByVal Sender As System.Object, ByVal e As Microsoft.Win32.PowerModeChangedEventArgs)
Select Case SystemInformation.PowerStatus.BatteryChargeStatus
Case BatteryChargeStatus.Low
MessageBox.Show("Battery is running low.", "Low Battery", MessageBoxButtons.OK, _
System.Windows.Forms.MessageBoxIcon.Exclamation)
Case BatteryChargeStatus.Critical
MessageBox.Show("Battery is critically low.", "Critical Battery", MessageBoxButtons.OK, _
System.Windows.Forms.MessageBoxIcon.Stop)
Case Else
' Battery is okay.
Exit Select
End Select
End Sub
除了 BatteryChargeStatus 枚举,PowerStatus 属性还包含用于确定电池容量 (BatteryFullLifetime) 和电池充电百分比(BatteryLifePercent,BatteryLifeRemaining)的枚举。
可以使用 Application 的 SetSuspendState 方法让计算机进入休眠模式或挂起模式。 如果 force
参数设置为 false
,操作系统会将事件广播给请求挂起权限的所有应用程序。 如果 disableWakeEvent
参数设置为 true
,操作系统将禁用所有唤醒事件。
下面的代码示例演示如何让计算机进入休眠状态。
if (SystemInformation.PowerStatus.BatteryChargeStatus == System.Windows.Forms.BatteryChargeStatus.Critical)
{
Application.SetSuspendState(PowerState.Hibernate, false, false);
}
If SystemInformation.PowerStatus.BatteryChargeStatus = System.Windows.Forms.BatteryChargeStatus.Critical Then
Application.SetSuspendState(PowerState.Hibernate, False, False)
End If