delphi – 如何检测笔记本电脑是否在运行电池?

前端之家收集整理的这篇文章主要介绍了delphi – 如何检测笔记本电脑是否在运行电池?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当笔记本电脑运行在电池(或AC)上时,如何检测(从德尔福)?

解决方法

要在Vista和 Windows 7上的状态更改时通知您,您可以使用 RegisterPowerSettingNotification.

对于Windows 2000及更高版本,请查看GetSystemPowerStatus,或转到MSDN阅读约Power Management.

(有人总是在我打字时发帖:-()

function GetBattery : Boolean;
var
  SysPowerStatus: TSystemPowerStatus;
begin
  Win32Check(GetSystemPowerStatus(SysPowerStatus));
  case SysPowerStatus.ACLineStatus of
    0: Result := False;
    1: begin
      Result := True;
      // You can return life with
      // String := Format('Battery power left: %u percent.',SysPowerStatus.BatteryLifePercent]);
    end;
    else
      raise Exception.Create('Unknown battery status');
  end;
end;
原文链接:https://www.f2er.com/delphi/101499.html

猜你在找的Delphi相关文章