yangyin
2025-03-27 b0de14c2670b9ff0079dacfb4b7457b438368f11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#region Imports
 
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Windows.Forms;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Controls
{
    #region ParrotWiFiPercentage
 
    public class ParrotWiFiPercentage : Timer
    {
        public ParrotWiFiPercentage()
        {
            Enabled = true;
            base.Interval = 3000;
            backgroundThread.DoWork += BackgroundThread_DoWork;
            backgroundThread.RunWorkerAsync();
        }
 
        private void BackgroundThread_DoWork(object sender, DoWorkEventArgs e)
        {
            if (backgroundThread.IsBusy)
            {
                Process process = new()
                {
                    StartInfo = new ProcessStartInfo
                    {
                        WindowStyle = ProcessWindowStyle.Hidden,
                        CreateNoWindow = true,
                        UseShellExecute = false,
                        RedirectStandardOutput = true,
                        FileName = "cmd.exe",
                        Arguments = "/C \"@echo off && for /f \"tokens=3 delims= \" %a in ('netsh wlan show interfaces ^| findstr /r \" ^....SSID\"') do echo %a && for /f \"tokens=3 delims= \" %a in ('netsh wlan show interfaces ^| findstr /r \" ^....Signal\"') do echo %a\""
                    }
                };
                process.Start();
                SSID = "Not connected";
                int percentage = 0;
                try
                {
                    string[] array = process.StandardOutput.ReadToEnd().Split(new char[]
                    {
                        ' '
                    });
                    SSID = array[0];
                    percentage = int.Parse(array[1].Remove(0, 2).Replace("%", ""));
                    process.WaitForExit();
                }
                catch
                {
                }
                Value = percentage;
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("Returns the wifi percentage")]
        public int Value { get; private set; } = 100;
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("Returns the SSID")]
        public string SSID { get; private set; } = "Not connected";
 
        protected override void OnTick(EventArgs e)
        {
            base.OnTick(e);
            backgroundThread.RunWorkerAsync();
        }
 
        private readonly BackgroundWorker backgroundThread = new();
    }
 
    #endregion
}