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,61 @@
using System;
using System.Text;
using System.Drawing;
using DevComponents.DotNetBar;
namespace DevComponents.AdvTree.Display
{
/// <summary>
/// Provides data for RenderColumnHeader event.
/// </summary>
public class ColumnHeaderRendererEventArgs : EventArgs
{
/// <summary>
/// Gets the column header that is rendered.
/// </summary>
public ColumnHeader ColumnHeader = null;
/// <summary>
/// Target Graphics canvas.
/// </summary>
public Graphics Graphics;
/// <summary>
/// Gets the bounds of the column header.
/// </summary>
public Rectangle Bounds;
/// <summary>
/// Gets the effective style for the column.
/// </summary>
public ElementStyle Style = null;
/// <summary>
/// Gets the AdvTree control header is rendered for.
/// </summary>
public AdvTree Tree = null;
/// <summary>
/// Gets or sets the color of the column sort indicator.
/// </summary>
public Color SortIndicatorColor = Color.Empty;
/// <summary>
/// Initializes a new instance of the ColumnHeaderRendererEventArgs class.
/// </summary>
public ColumnHeaderRendererEventArgs()
{
}
/// <summary>
/// Initializes a new instance of the ColumnHeaderRendererEventArgs class.
/// </summary>
/// <param name="columnHeader"></param>
/// <param name="graphics"></param>
/// <param name="bounds"></param>
/// <param name="style"></param>
public ColumnHeaderRendererEventArgs(AdvTree tree, ColumnHeader columnHeader, Graphics graphics, Rectangle bounds, ElementStyle style)
{
Tree = tree;
ColumnHeader = columnHeader;
Graphics = graphics;
Bounds = bounds;
Style = style;
}
}
}