C# Class Axiom.Framework.Exceptions.WinFormErrorDialog

Inheritance: System.Windows.Forms.Form, System.Windows.Forms.IMessageFilter, IErrorDialog
Show file Open project: WolfgangSt/axiom Class Usage Examples

Protected Properties

Property Type Description
cmdClose System.Windows.Forms.Button
lblFooter System.Windows.Forms.Label
lblHeader System.Windows.Forms.Label
txtMsg System.Windows.Forms.TextBox

Public Methods

Method Description
PreFilterMessage ( System.Windows.Forms &msg ) : bool

Filters out a message before it is dispatched.

Show ( Exception exception ) : void

Causes the exception to be displayed on the screen

WinFormErrorDialog ( ) : System

Private Methods

Method Description
InitializeComponent ( ) : void

Method Details

PreFilterMessage() public method

Filters out a message before it is dispatched.
public PreFilterMessage ( System.Windows.Forms &msg ) : bool
msg System.Windows.Forms The message to be dispatched. You cannot modify this message.
return bool

Show() public method

Causes the exception to be displayed on the screen
public Show ( Exception exception ) : void
exception System.Exception The exception to display
return void

WinFormErrorDialog() public method

public WinFormErrorDialog ( ) : System
return System

Property Details

cmdClose protected property

protected Button,System.Windows.Forms cmdClose
return System.Windows.Forms.Button

lblFooter protected property

protected Label,System.Windows.Forms lblFooter
return System.Windows.Forms.Label

lblHeader protected property

protected Label,System.Windows.Forms lblHeader
return System.Windows.Forms.Label

txtMsg protected property

protected TextBox,System.Windows.Forms txtMsg
return System.Windows.Forms.TextBox