コード例 #1
0
ファイル: FrmWebBrowser.cs プロジェクト: jojozhuang/Projects
 // Update the status text
 void _windowManager_StatusTextChanged(object sender, TextChangedEventArgs e)
 {
     try
     {
         this.toolStripStatusLabel.Text = e.Text;
     }
     catch (Exception ex)
     {
         Program.ShowMessageBox("FrmWebBrowser", ex);
     }
 }
コード例 #2
0
ファイル: MainWebForm.cs プロジェクト: jojozhuang/Projects
 // Update the status text
 void _windowManager_StatusTextChanged(object sender, TextChangedEventArgs e)
 {
   this.toolStripStatusLabel.Text = e.Text;
 }
コード例 #3
0
ファイル: WindowManager.cs プロジェクト: jojozhuang/Projects
 /// <summary>
 /// Raises the StatusTextChanged event
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnStatusTextChanged(TextChangedEventArgs e)
 {
   if (StatusTextChanged != null)
     StatusTextChanged(this, e);
 }