mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
cae7e144b3
* fix: selection
14 lines
269 B
C#
14 lines
269 B
C#
namespace AntDesign
|
|
{
|
|
public interface ITable
|
|
{
|
|
internal ISelectionColumn HeaderSelection { get; set; }
|
|
|
|
internal void SelectionChanged(int[] checkedIndex);
|
|
|
|
internal void Refresh();
|
|
|
|
void SetSelection(string[] keys);
|
|
}
|
|
}
|