Binboo.BinbooMainForm.Error C# (CSharp) Method

Error() private method

private Error ( object sender, ErrorEventArgs e ) : void
sender object
e Binboo.Core.Events.ErrorEventArgs
return void
        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);
                                              	};
        }