30 lines
564 B
C#
30 lines
564 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebWindowComplex
|
|
{
|
|
public partial class LayoutConst
|
|
{
|
|
public enum CompileStep
|
|
{
|
|
Tree = 0,
|
|
Frame = 1,
|
|
Split,
|
|
Sash,
|
|
Fill,
|
|
General
|
|
}
|
|
|
|
public enum PositionJoints
|
|
{
|
|
BL = 0, // Bottom Left
|
|
BR = 1, // Bottom Right
|
|
TR, // Top Right
|
|
TL // Top Left
|
|
}
|
|
}
|
|
}
|