change app directory
This commit is contained in:
20
FlowerApp/Handlers/WaterfallLayoutHandler.cs
Normal file
20
FlowerApp/Handlers/WaterfallLayoutHandler.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user