C# 检测电源适配器的断开和连接?
这个问题我解决过哦。用P/Invoke调 中的GetSystemPowerStatus函数。函数返回系统的电源状态。状态指数系统是在直流电源还是交流电源下运作,电池是否在充电,电池的剩余电量。 先定义结构体:[StructLayout(LayoutKind。Sequential)]publicstructSYSTEM_POWER_STATUS{publicbyteACLineStatus;publicbyteBatteryFlag;publicbyteBatteryLifePercent;publicbyteReserved1;publicintBatteryLifeTime;publi...全部
这个问题我解决过哦。用P/Invoke调 中的GetSystemPowerStatus函数。函数返回系统的电源状态。状态指数系统是在直流电源还是交流电源下运作,电池是否在充电,电池的剩余电量。
先定义结构体:[StructLayout(LayoutKind。Sequential)]publicstructSYSTEM_POWER_STATUS{publicbyteACLineStatus;publicbyteBatteryFlag;publicbyteBatteryLifePercent;publicbyteReserved1;publicintBatteryLifeTime;publicintBatteryFullLifeTime;}然后导入外部函数:[DllImport("kernel32。
dll",CharSet=CharSet。Auto,ExactSpelling=true)]publicstaticexternboolGetSystemPowerStatus(refSYSTEM_POWER_STATUSsystemPowerStatus);如果调用成功,返回true,然后分析systemPowerStatus的数据就行。
ACLineStatus为1时,表示正在使用交流电源,为0使用直流电源。希望能够帮到你。收起