예제 #1
0
        public ProxySwitcherForm()
        {
            InitializeComponent();

            proxyRegistry = new ProxyRegistry();
            UpdateButtonStyle();
        }
예제 #2
0
        private void FormMain_Load(object sender, EventArgs e)
        {
            registry      = new ProxyRegistry();
            isProxyEnable = registry.ProxyEnable;
            registry.GetProxyServer(ref proxyAddress, ref proxyPort);
            registry.GetProxyOverride(ref proxyExceptions, ref bypassLocal);

            monitor             = new RegistryMonitor(registry.Key);
            monitor.RegChanged += Monitor_RegChanged;
            monitor.Start();
        }