mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
aeae95ef43
* fix(module: transfer): add `ListStyle` to custom the css for columns. * pass TransferDirection
18 lines
362 B
C#
18 lines
362 B
C#
using System;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class TransferScrollArgs
|
|
{
|
|
public TransferDirection Direction { get; private set; }
|
|
|
|
public EventArgs Args { get; private set; }
|
|
|
|
public TransferScrollArgs(TransferDirection direction, EventArgs e)
|
|
{
|
|
Direction = direction;
|
|
Args = e;
|
|
}
|
|
}
|
|
}
|