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,34 @@
using System;
using System.Text;
namespace DevComponents.AdvTree
{
/// <summary>
/// Provides data for the ProvideCustomCellEditor event.
/// </summary>
public class CustomCellEditorEventArgs : EventArgs
{
/// <summary>
/// Gets or sets the cell editor. You must set this property in your event handler to the custom
/// editor to be used for cell editing.
/// </summary>
public ICellEditControl EditControl = null;
/// <summary>
/// Gets the cell editor will be used for.
/// </summary>
public readonly Cell Cell;
/// <summary>
/// Initializes a new instance of the CustomCellEditorEventArgs class.
/// </summary>
/// <param name="cell"></param>
public CustomCellEditorEventArgs(Cell cell)
{
Cell = cell;
}
}
/// <summary>
/// Defines delegate for ProvideCustomCellEditor event.
/// </summary>
public delegate void CustomCellEditorEventHandler(object sender, CustomCellEditorEventArgs e);
}