Exemplo n.º 1
0
        private void axWebBrowser1_StatusTextChange(object sender, AxSHDocVw.DWebBrowserEvents2_StatusTextChangeEvent e)
        {
            AxSHDocVw.AxWebBrowser webBrowser = (AxSHDocVw.AxWebBrowser)sender;
            WebBrowserProperty     property   = (WebBrowserProperty)webBrowser.Tag;

            property.statusText = e.text;
            if (webBrowser == WebBrowserProperty.frontProperty.webBrowser)
            {
                toolStripStatusLabel1.Text = e.text;
            }
        }
Exemplo n.º 2
0
 private void axWebBrowser1_StatusTextChange(object sender, AxSHDocVw.DWebBrowserEvents2_StatusTextChangeEvent e)
 {
     toolStatus.Text = e.text;
 }
Exemplo n.º 3
0
 private void OnStatusChange(object sender, AxSHDocVw.DWebBrowserEvents2_StatusTextChangeEvent e)
 {
     statusStrip.Items[0].Text = e.text;
 }
Exemplo n.º 4
0
 private void WebBrowser_StatusTextChange(object sender, AxSHDocVw.DWebBrowserEvents2_StatusTextChangeEvent e)
 {
     this.cStatusRenew(e.text);
 }