change app directory

This commit is contained in:
2023-07-19 21:01:19 +08:00
parent 8b759c94ec
commit 02ac33fc07
56 changed files with 781 additions and 535 deletions

View File

@ -0,0 +1,20 @@
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)
{
}
}