flower-story/FlowerApp/Handlers/WaterfallLayoutHandler.cs
2023-07-19 21:01:19 +08:00

21 lines
577 B
C#

using Blahblah.FlowerApp.Controls;
namespace Blahblah.FlowerApp.Handlers;
public partial class WaterfallLayoutHandler
{
static readonly IPropertyMapper<WaterfallLayout, WaterfallLayoutHandler> PropertyMapper = new PropertyMapper<WaterfallLayout, WaterfallLayoutHandler>(ViewMapper)
{
[nameof(WaterfallLayout.Columns)] = MapColumns
};
static readonly CommandMapper<WaterfallLayout, WaterfallLayoutHandler> CommandMapper = new(ViewCommandMapper)
{
};
public WaterfallLayoutHandler() : base(PropertyMapper, CommandMapper)
{
}
}