| File: System\Windows\Forms\FormClosingEventArgs.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.ComponentModel; namespace System.Windows.Forms; /// <summary> /// Provides data for <see cref="Form.OnFormClosing"/> and <see cref="Form.OnClosing"/> events. /// </summary> public class FormClosingEventArgs : CancelEventArgs { public FormClosingEventArgs(CloseReason closeReason, bool cancel) : base(cancel) { CloseReason = closeReason; } /// <summary> /// Provides the reason for the Form close. /// </summary> public CloseReason CloseReason { get; } }