在我的UWP应用程序中,我试图获得这样的聚合电池信息:
var aggBattery = Windows.Devices.Power.Battery.AggregateBattery;
BatteryReport report = aggBattery.GetReport();
aggBattery.ReportUpdated += AggBattery_ReportUpdated;
int? fullCapacity = report.FullChargeCapacityInMilliwattHours;
int? remainingCapacity = report.RemainingCapacityInMilliwattHours;
不幸的是,似乎当前的电池控制器不适合微软的(它是CHUWI 12“平板电脑),并且它返回空值(如MSDN描述:https://msdn.microsoft.com/en-us/windows/uwp/devices-sensors/get-battery-info)。唯一的充电/放电信息是真实的。 在这种情况下如何获取电池信息(我的意思是充电百分比)?