mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +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>
18 lines
340 B
C#
18 lines
340 B
C#
using System;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class TransferScrollArgs
|
|
{
|
|
public string Direction { get; private set; }
|
|
|
|
public EventArgs Args { get; private set; }
|
|
|
|
public TransferScrollArgs(string direction, EventArgs e)
|
|
{
|
|
Direction = direction;
|
|
Args = e;
|
|
}
|
|
}
|
|
}
|