mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 20:17:58 +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;
|
|
}
|
|
}
|
|
} |