How to get Battery charging status from WPF applicatioin using WMI?
-
I'm trying to get charging percent, and exactly the same text that is Windows showing - Not Charging, Full Charged, Charging I'm using wmi-query. I don't want to hard-code that texts, because it's working differently every time. Sometimes it's showing 95 percent- Not Charging, or can be Charging. Is there any way to get that result text? What I can do, just to check if it is 100 percent charged, to display Full Charged. But for 96 percent, it is working differently, sometimes Windows display Charged, or Not Charging
-
Answer:
Use the http://msdn.microsoft.com/en-us/library/windows/desktop/aa394074%28v=vs.85%29.aspx class: static string GetBatteryStatus() { ManagementScope scope = new ManagementScope("//./root/cimv2"); SelectQuery query = new SelectQuery("Select BatteryStatus From Win32_Battery"); using(ManagementObjectSearcher searcher = new ManagementObjectSearcher(scope, query)) { using(ManagementObjectCollection objectCollection = searcher.Get()) { foreach(ManagementObject mObj in objectCollection) { PropertyData pData = mObj.Properties["BatteryStatus"]; switch((Int16)pData.Value) { //... case 2:return "Not Charging"; case 3:return "Fully Charged"; case 4:return "Low"; case 5: return "Critical"; //... } } } } return string.Empty; }
User1234 at Stack Overflow Visit the source
Related Q & A:
- How do I get the Printer status?Best solution by Stack Overflow
- How to get the column value when a row is selected in wpf listview?Best solution by Stack Overflow
- How to get the previous URL after using window.history.back?Best solution by stackoverflow.com
- How to get file properties from a post request using Slim?Best solution by Stack Overflow
- How do I change my status using Facebook Mobile?Best solution by wikihow.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.