C#,持续监控电池电量

本文关键字:监控 | 更新日期: 2023-09-27 18:24:36

我正在设计一个依赖于监控计算机电池电量的程序。

这是我正在使用的C#代码:

   PowerStatus pw = SystemInformation.PowerStatus;
   if (pw.BatteryLifeRemaining >= 75)
   {
       //Do stuff here
   }

我尝试while语句失败,它使用了所有的CPU,这是不希望的。

    int i = 1;
    while (i == 1)
    {
        if (pw.BatteryLifeRemaining >= 75)
        {
           //Do stuff here
        }
    }

我如何通过无限循环不断地监控它,以便当它达到75%时,它会执行一些代码。

C#,持续监控电池电量

尝试计时器:

public class Monitoring
{
    System.Windows.Forms.Timer timer1 = new System.Windows.Forms.Timer();
    public Monitoring()
    {
        timer1.Interval = 1000; //Period of Tick
        timer1.Tick += timer1_Tick;
    }
    private void timer1_Tick(object sender, EventArgs e)
    {
        CheckBatteryStatus(); 
    }
    private void CheckBatteryStatus()
    {
        PowerStatus pw = SystemInformation.PowerStatus;
        if (pw.BatteryLifeRemaining >= 75)
        {
            //Do stuff here
        }
    }
}

更新:

还有另一种方法可以完成任务。您可以使用SystemEvents.PowerModeChanged。打电话给它,等待更改,监控发生的更改,然后做你的事情。

static void SystemEvents_PowerModeChanged(object sender, Microsoft.Win32.PowerModeChangedEventArgs e)
{
    if (e.Mode == Microsoft.Win32.PowerModes.StatusChange)
    {
         if (pw.BatteryLifeRemaining >= 75)
         {
          //Do stuff here
         }
    }
}

While循环将导致UI响应不佳,应用程序将崩溃。你可以用很多方法来解决这个问题。请查看下面的代码片段将帮助您的需求。

public delegate void DoAsync();
private void button1_Click(object sender, EventArgs e)
{
   DoAsync async = new DoAsync(GetBatteryDetails);
   async.BeginInvoke(null, null);
}
public void GetBatteryDetails()
{
   int i = 0;
   PowerStatus ps = SystemInformation.PowerStatus;
   while (true)
   {
     if (this.InvokeRequired)
         this.Invoke(new Action(() => this.Text = ps.BatteryLifePercent.ToString() + i.ToString()));
     else
         this.Text = ps.BatteryLifePercent.ToString() + i.ToString();
     i++;
   }
}
BatteryChargeStatus.Text =  SystemInformation.PowerStatus.BatteryChargeStatus.ToString(); 
BatteryFullLifetime.Text  = SystemInformation.PowerStatus.BatteryFullLifetime.ToString();
BatteryLifePercent.Text  = SystemInformation.PowerStatus.BatteryLifePercent.ToString();
BatteryLifeRemaining.Text = SystemInformation.PowerStatus.BatteryLifeRemaining.ToString();
PowerLineStatus.Text = SystemInformation.PowerStatus.PowerLineStatus.ToString();

如果要执行某些操作,只需将这些字符串值转换为整数即可。