DotNet 4.8.1 build of DotNetBar

This commit is contained in:
2025-02-07 10:35:23 -05:00
parent 33439b63a0
commit 6b0a5d60f4
2609 changed files with 989814 additions and 7 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Text;
namespace DevComponents.DotNetBar
{
/// <summary>
/// Provides data for the Quick Access Toolbar Customize dialog events.
/// </summary>
public class QatCustomizeDialogEventArgs : EventArgs
{
/// <summary>
/// Gets or sets whether to cancel the current operation. When showing the dialog this allows to cancel the showing. When dialog is closed
/// it allows to cancel the changes made on customize dialog.
/// </summary>
public bool Cancel = false;
/// <summary>
/// Gets or sets the reference to the form that is acting as dialog. You can set this value to your custom form to display it instead of
/// built-in dialog.
/// </summary>
public System.Windows.Forms.Form Dialog = null;
/// <summary>
/// Creates new instance of the object and initializes it with default values.
/// </summary>
/// <param name="dialog">Reference to the dialog being used for customization.</param>
public QatCustomizeDialogEventArgs(System.Windows.Forms.Form dialog)
{
this.Dialog = dialog;
}
}
}