Inheritance: System.EventArgs
Example #1
0
 private void Error(object sender, ErrorEventArgs e)
 {
     binbooNotify.Icon = Binboo.NotConnected;
     binbooNotify.ShowBalloonTip(2000, "Warning", e.Message, ToolTipIcon.Warning);
     binbooNotify.BalloonTipClicked += delegate
                                       	{
                                       		MessageBox.Show(e.Details, e.Message);
                                       	};
 }