mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
16 lines
361 B
C#
16 lines
361 B
C#
using Radzen.Blazor;
|
|
|
|
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about RadzenDropDown ItemRender event.
|
|
/// </summary>
|
|
public class DropDownItemRenderEventArgs<TValue> : DropDownBaseItemRenderEventArgs<TValue>
|
|
{
|
|
/// <summary>
|
|
/// Gets the DropDown.
|
|
/// </summary>
|
|
public RadzenDropDown<TValue>? DropDown { get; internal set; }
|
|
}
|
|
|