mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
2cd069a6ac
* fix(module: transfer): Fixed multiple issues fix(module: transfer): Added localization support (LocaleProvider.CurrentLocale.Transfer). Property name is 'Locale'. #645 fix(module: transfer): Fixed no data image. fix(module: transfer): Header alignment fix(module: transfer): Fixed header count suffix fix(module: transfer): Fixed a bug in the checkbox state if there is 'no item' or no 'not deactivated' item in the selection list. fix(module: transfer): Duplicate item filter bug fixed (#711) feat(module: transfer): Added clear button to the filter input feat(module: transfer): Filter option is now InvariantCultureIgnoreCase (please change it if there is a problem with chinese language) style(module: transfer): removed unused usings, fixed some style issues docs(module: transfer): Added Local Property description - Please take a look at the chinese version (Google translate) * Update index.zh-CN.md Co-authored-by: Lars Diederich <diederich@evodata.de> Co-authored-by: James Yeung <shunjiey@hotmail.com>
16 lines
437 B
C#
16 lines
437 B
C#
namespace AntDesign
|
|
{
|
|
public class TransferSelectChangeArgs
|
|
{
|
|
public string[] SourceSelectedKeys { get; private set; }
|
|
|
|
public string[] TargetSelectedKeys { get; private set; }
|
|
|
|
public TransferSelectChangeArgs(string[] sourceSelectedKeys, string[] targetSelectedKeys)
|
|
{
|
|
SourceSelectedKeys = sourceSelectedKeys;
|
|
TargetSelectedKeys = targetSelectedKeys;
|
|
}
|
|
}
|
|
}
|