mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
21 lines
370 B
C#
21 lines
370 B
C#
|
using Microsoft.AspNetCore.Components;
|
|||
|
|
|||
|
namespace AntBlazor
|
|||
|
{
|
|||
|
public class ForwardRef
|
|||
|
{
|
|||
|
private ElementReference _current;
|
|||
|
|
|||
|
public ElementReference Current
|
|||
|
{
|
|||
|
get => _current;
|
|||
|
set => Set(value);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public void Set(ElementReference value)
|
|||
|
{
|
|||
|
_current = value;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|