System.Windows.Forms.Form.OnFormClosing C# (CSharp) Метод

OnFormClosing() приватный Метод

private OnFormClosing ( FormClosingEventArgs e ) : void
e FormClosingEventArgs
Результат void
		protected virtual void OnFormClosing (FormClosingEventArgs e)
		{
			FormClosingEventHandler eh = (FormClosingEventHandler)(Events [FormClosingEvent]);
			if (eh != null)
				eh (this, e);
		}
Form