mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
16 lines
356 B
C#
16 lines
356 B
C#
using Radzen.Blazor;
|
|
|
|
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about RadzenListBox ItemRender event.
|
|
/// </summary>
|
|
public class ListBoxItemRenderEventArgs<TValue> : DropDownBaseItemRenderEventArgs<TValue>
|
|
{
|
|
/// <summary>
|
|
/// Gets the ListBox.
|
|
/// </summary>
|
|
public RadzenListBox<TValue>? ListBox { get; internal set; }
|
|
}
|
|
|