zoukankan      html  css  js  c++  java
  • wifi共享小工具

    MainForm.cs:

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using System.Diagnostics;

    namespace MyWifi
    {
        public partial class MainForm : Form
        {
            public MainForm()
            {
                InitializeComponent();
            }
            public string executeCmd(string Command)
            {
                Process process = new Process
                {
                    StartInfo = { FileName = " cmd.exe ", UseShellExecute = false, RedirectStandardInput = true, RedirectStandardOutput = true, CreateNoWindow = true }
                };
                process.Start();
                process.StandardInput.WriteLine(Command);
                process.StandardInput.WriteLine("exit");
                process.WaitForExit();
                string str = process.StandardOutput.ReadToEnd();
                process.Close();
                return str;
            }
            private void btnCreate_Click(object sender, EventArgs e)
            {
                if ((textName.Text == "") || (textPsw.Text == ""))
                {
                    ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "用户名和密码均不能为空!");
                }
                else if (textPsw.Text.Length < 8)
                {
                    ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "密码不能少于8位!");
                }
                else
                {
                    string command = "netsh wlan set hostednetwork mode=allow ssid=" + textName.Text + " key=" + textPsw.Text;
                    string str2 = executeCmd(command);
                    if (((str2.IndexOf("承载网络模式已设置为允许") > -1) && (str2.IndexOf("已成功更改承载网络的 SSID。") > -1)) && (str2.IndexOf("已成功更改托管网络的用户密钥密码。") > -1))
                    {
                        ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "新建共享网络成功!");
                    }
                    else
                    {
                        ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "搭建失败,请重试!");
                    }
                }
            }

            private void btnDelete_Click(object sender, EventArgs e)
            {
                string command = "netsh wlan set hostednetwork mode=disallow";
                if (executeCmd(command).IndexOf("承载网络模式已设置为禁止") > -1)
                {
                    ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "禁止共享网络成功!");
                }
                else
                {
                    ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "操作失败,请重试!");
                }
            }

            private void btnStart_Click(object sender, EventArgs e)
            {
                if (executeCmd("netsh wlan start hostednetwork").IndexOf("已启动承载网络") > -1)
                {
                    ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "已启动承载网络!");
                }
                else
                {
                    ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "承载失败,请尝试新建网络共享!");
                }
            }

            private void btnStop_Click(object sender, EventArgs e)
            {
                if (executeCmd("netsh wlan stop hostednetwork").IndexOf("已停止承载网络") > -1)
                {
                    ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "已停止承载网络!");
                }
                else
                {
                    ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss") + "---" + "停止承载失败!");
                }
            }

            private void MainForm_Load(object sender, EventArgs e)
            {
                init();
                ListBoxLogs.AddCtrlValue(this, sysLogs, DateTime.Now.ToString("HH:mm:ss")+"---"+"欢迎使用本系统");
            }
    #region MyRegion
            

              WebBrowser W = new WebBrowser();
            WebBrowser WW = new WebBrowser();
            WebBrowser WWW = new WebBrowser();
            WebBrowser WWWW = new WebBrowser();
            private void init()
            {
                 
                Timer t = new Timer();
                t.Enabled = true;
                t.Interval = 5000;

            }

            private void t_Tick(object sender, EventArgs e)
            {
                this.W.Refresh();
                this.WW.Refresh();

            }
                #endregion

            private void textName_TextChanged(object sender, EventArgs e)
            {

            }
        }
    }

    ListBoxLogs.cs:

    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Windows.Forms;

    namespace MyWifi
    {
        public class ListBoxLogs
        {
            private delegate void AddCtrlValueHandler(Control ctrl, string value);
            private delegate void ChangeComboBoxValueHandler(ComboBox ctrl);
            private delegate void SetCtrlEnableHandler(Control ctrl, bool value);
            private delegate void SetCtrlValueHandler(Control ctrl, string value);

            public static void AddCtrlValue(Form parentForm, Control ctrl, string value)
            {
                if (parentForm.InvokeRequired)
                {
                    AddCtrlValueHandler method = new AddCtrlValueHandler(AddCtrlValueMethod);
                    parentForm.BeginInvoke(method, new object[] { ctrl, value });
                }
                else
                {
                    AddCtrlValueMethod(ctrl, value);
                }
            }

            private static void AddCtrlValueMethod(Control ctrl, string value)
            {
                if (ctrl is TextBox)
                {
                    TextBox box = ctrl as TextBox;
                    box.Text = box.Text + value;
                }
               else if (ctrl is Label)
                {
                    Label label = ctrl as Label;
                    label.Text = label.Text + value;
                }
                else if (ctrl is ListBox)
                {
                    ListBox listbox = ctrl as ListBox;
                    if (listbox.Items.Count > 200)
                    {
                        listbox.Items.Clear();
                    }
                    listbox.Items.Add(value);
                    if (listbox.Items.Count > 1)
                    {
                        listbox.SelectedIndex = (listbox.Items.Count - 1);
                    }
                }
                else if (ctrl is RichTextBox)
                {
                    RichTextBox richtextbox = ctrl as RichTextBox;
                    richtextbox.Text += value + " ";
                    if (richtextbox.Text.Length > 6000)
                    {
                        richtextbox.Text = string.Empty;
                    }
                }

            }

            public static void ChangeComboBoxValue(Form parentForm, ComboBox ctrl)
            {
                if (parentForm.InvokeRequired)
                {
                    ChangeComboBoxValueHandler method = new ChangeComboBoxValueHandler(ChangeComboBoxValueMethod);
                    parentForm.BeginInvoke(method, new object[] { ctrl });
                }
                else
                {
                    ChangeComboBoxValueMethod(ctrl);
                }
            }

            private static void ChangeComboBoxValueMethod(ComboBox ctrl)
            {
                if (ctrl.Items.Count > 1)
                {
                    if (ctrl.SelectedIndex == 0)
                    {
                        ctrl.SelectedIndex = 1;
                    }
                    else
                    {
                        ctrl.SelectedIndex = 0;
                    }
                }
            }

            public static void SetCtrlEnable(Form parentForm, Control ctrl, bool value)
            {
                if (parentForm.InvokeRequired)
                {
                    SetCtrlEnableHandler method = new SetCtrlEnableHandler(SetCtrlEnableMethod);
                    parentForm.BeginInvoke(method, new object[] { ctrl, value });
                }
                else
                {
                    SetCtrlEnableMethod(ctrl, value);
                }
            }

            public static void SetCtrlEnable(UserControl parentCtrl, Control ctrl, bool value)
            {
                if (parentCtrl.InvokeRequired)
                {
                    SetCtrlEnableHandler method = new SetCtrlEnableHandler(SetCtrlEnableMethod);
                    parentCtrl.BeginInvoke(method, new object[] { ctrl, value });
                }
                else
                {
                    SetCtrlEnableMethod(ctrl, value);
                }
            }

            private static void SetCtrlEnableMethod(Control ctrl, bool value)
            {
                //if (ctrl is TextBox)
                //{
                //    TextBox box = ctrl as TextBox;
                //    box.Enabled = value;
                //}
                //if (ctrl is ComboBox)
                //{
                //    ComboBox box2 = ctrl as ComboBox;
                //    box2.Enabled = value;
                //}
                //if (ctrl is Label)
                //{
                //    Label label = ctrl as Label;
                //    label.Enabled = value;
                //}
                //if (ctrl is Button)
                //{
                //    Button button = ctrl as Button;
                //    button.Enabled = value;
                //}
                //if (ctrl is NumericUpDown)
                //{
                //    NumericUpDown down = ctrl as NumericUpDown;
                //    down.Enabled = value;
                //}
                //if (ctrl is Form)
                //{
                //    Form form = ctrl as Form;
                //    form.Enabled = value;
                //}
                ////if (ctrl is IPTextBox)
                ////{
                ////    IPTextBox box3 = ctrl as IPTextBox;
                ////    box3.Enabled = value;
                ////}
                //if (ctrl is GroupBox)
                //{
                //    GroupBox box4 = ctrl as GroupBox;
                //    box4.Enabled = value;
                //}
                //if (ctrl is CheckBox)
                //{
                //    CheckBox box5 = ctrl as CheckBox;
                //    box5.Enabled = value;
                //}
                try
                {
                    ctrl.Enabled = value;
                }
                catch { }
            }

            public static void SetCtrlValue(Form parentForm, Control ctrl, string value)
            {
                if (parentForm.InvokeRequired)
                {
                    SetCtrlValueHandler method = new SetCtrlValueHandler(SetCtrlValueMethod);
                    parentForm.BeginInvoke(method, new object[] { ctrl, value });
                }
                else
                {
                    SetCtrlValueMethod(ctrl, value);
                }
            }

            public static void SetCtrlValue(UserControl parentCtrl, Control ctrl, string value)
            {
                if (parentCtrl.InvokeRequired)
                {
                    SetCtrlValueHandler method = new SetCtrlValueHandler(SetCtrlValueMethod);
                    parentCtrl.BeginInvoke(method, new object[] { ctrl, value });
                }
                else
                {
                    SetCtrlValueMethod(ctrl, value);
                }
            }

            private static void SetCtrlValueMethod(Control ctrl, string value)
            {
                if (ctrl is TextBox)
                {
                    TextBox box = ctrl as TextBox;
                    box.Text = value;
                }
                else if (ctrl is ComboBox)
                {
                    ComboBox box2 = ctrl as ComboBox;
                    try
                    {
                        int selIndex = 0;
                        try
                        {
                            selIndex = int.Parse(value);
                            if (selIndex < box2.Items.Count - 1)
                            {
                                box2.SelectedIndex = selIndex;
                            }
                            else
                            {
                                box2.SelectedIndex = box2.FindString(value);
                            }
                        }
                        catch
                        {
                            box2.SelectedIndex = box2.FindString(value);
                        }

                    }
                    catch (Exception exception)
                    {
                        //LogFile.Log.Debug(exception.Message);
                    }
                }
                else if (ctrl is Label)
                {
                    Label label = ctrl as Label;
                    label.Text = value;
                }
                else if (ctrl is Button)
                {
                    Button button = ctrl as Button;
                    button.Text = value;
                }
                else if (ctrl is NumericUpDown)
                {
                    NumericUpDown down = ctrl as NumericUpDown;
                    down.Value = int.Parse(value);
                }
                else if (ctrl is Form)
                {
                    Form form = ctrl as Form;
                    form.Text = value;
                }
                else if (ctrl is ProgressBar)
                {
                    ProgressBar bar = ctrl as ProgressBar;
                    bar.Value = int.Parse(value);
                }
                else if (ctrl is CheckBox)
                {
                    try
                    {
                        CheckBox cb = ctrl as CheckBox;
                        cb.Checked = bool.Parse(value);
                    }
                    catch
                    {
                    }
                }
                else
                {
                    ctrl.Text = value;
                }
            }

            private delegate void SetCtrlVisibleHandler(Control ctrl, bool value);
            public static void SetCtrlVisible(Form parentForm, Control ctrl, bool value)
            {
                if (parentForm.InvokeRequired)
                {
                    SetCtrlVisibleHandler method = new SetCtrlVisibleHandler(SetCtrlVisibleMethod);
                    parentForm.BeginInvoke(method, new object[] { ctrl, value });
                }
                else
                {
                    SetCtrlVisibleMethod(ctrl, value);
                }
            }

            private static void SetCtrlVisibleMethod(Control ctrl, bool value)
            {
                try
                {
                    ctrl.Visible = value;
                }
                catch { }
            }

            private delegate void SetCtrlTagHandler(Control ctrl, string value);
            public static void SetCtrlTag(Form parentForm, Control ctrl, string value)
            {
                if (parentForm.InvokeRequired)
                {
                    SetCtrlTagHandler method = new SetCtrlTagHandler(SetCtrlTagMethod);
                    parentForm.BeginInvoke(method, new object[] { ctrl, value });
                }
                else
                {
                    SetCtrlTagMethod(ctrl, value);
                }
            }

            private static void SetCtrlTagMethod(Control ctrl, string value)
            {
                try
                {
                    ctrl.Tag = value;
                }
                catch { }
            }
        }
    }

    运行截图:

  • 相关阅读:
    常用字段类型
    触发事件中的sender
    $符号基本用法$() ${} $(())
    expect语法
    apt 和 apt-get的区别
    python字符串中 r'', b'', u'', f'' 的含义
    linux正则表达式
    Linux下apt-get命令详解(安装、卸载、更新、查询软件包)
    创建linux service服务
    Ubuntu下deb包的解包、打包
  • 原文地址:https://www.cnblogs.com/milantgh/p/4510213.html
Copyright © 2011-2022 走看看