C# Class Evbpc.Framework.Windows.Forms.FormClosedEventArgs

Provides data for the Form.FormClosed event.
https://msdn.microsoft.com/en-us/library/system.windows.forms.formclosedeventargs(v=vs.110).aspx
Inheritance: System.EventArgs
Show file Open project: EBrown8534/Framework Class Usage Examples

Public Methods

Method Description
FormClosedEventArgs ( CloseReason closeReason ) : System

Initializes a new instance of the FormClosedEventArgs class.

https://msdn.microsoft.com/en-us/library/system.windows.forms.formclosedeventargs.formclosedeventargs(v=vs.110).aspx

Method Details

FormClosedEventArgs() public method

Initializes a new instance of the FormClosedEventArgs class.
https://msdn.microsoft.com/en-us/library/system.windows.forms.formclosedeventargs.formclosedeventargs(v=vs.110).aspx
public FormClosedEventArgs ( CloseReason closeReason ) : System
closeReason CloseReason A value that represents the reason why the form was closed.
return System