Dashboard/Quik/Controls/FlowBox.cs

23 lines
609 B
C#

using System;
using Quik.CommandMachine;
namespace Quik.Controls
{
public class FlowBox : ContainerControl
{
public Direction FlowDirection { get; set; }
public bool AllowWrap { get; set; }
public VerticalAlignment VerticalAlignment { get; set; }
public HorizontalAlignment HorizontalAlignment { get; set; }
protected override void ValidateLayout()
{
throw new NotImplementedException();
}
protected override void ValidateVisual(CommandList cmd)
{
throw new NotImplementedException();
}
}
}