mattercontrol/CustomWidgets/FlowSpacers.cs
2014-03-22 10:00:20 -07:00

26 lines
529 B
C#

using MatterHackers.Agg;
using MatterHackers.Agg.UI;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MatterHackers.MatterControl.CustomWidgets
{
public class HorizontalSpacer : GuiWidget
{
public HorizontalSpacer()
{
HAnchor = Agg.UI.HAnchor.ParentLeftRight;
}
}
public class VerticalSpacer : GuiWidget
{
public VerticalSpacer()
{
VAnchor = Agg.UI.VAnchor.ParentBottomTop;
}
}
}