public AutoconfigFixerControl()
 {
     activeGuidList = new List <string>();
     networkControl = new NetworkControl();
     networkInfos   = networkControl.GetNetworkInfoAll();
     lockObj        = new object();
 }
Exemplo n.º 2
0
        private void Form1_Load(object sender, EventArgs e)
        {
            preferencesForm = new Preferences();
            networkControl  = new NetworkControl();

            autoconfigFixerControl = new AutoconfigFixerControl();
            autoconfigFixerControl.Initialize();

            networkControl.Scan();
            WlanUpdate();
            PreferencesUpdate();

            Timer_WlanInfoUpdate.Enabled = true;
        }