mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
19 lines
365 B
C#
19 lines
365 B
C#
|
namespace AntDesign
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Rendering mode
|
|||
|
/// </summary>
|
|||
|
public enum RenderMode
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Always to render
|
|||
|
/// </summary>
|
|||
|
Always,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Render when the hashCode of the parameter value changes
|
|||
|
/// </summary>
|
|||
|
ParametersHashCodeChanged,
|
|||
|
}
|
|||
|
}
|