Files
webwindowconfigurator/WebWindowComplex/LayoutConst.cs
T
Annamaria Sassi d7cfc9de29 - Aggiunto componente CardTree
- Aggiunti commenti
- Enum di TableComp portati in un file esterno (LayoutConst)
2025-10-13 12:20:15 +02:00

31 lines
582 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
{
Template = 0,
Tree = 1,
Frame,
Split,
Sash,
Fill,
General
}
public enum PositionJoints
{
BL = 0, // Bottom Left
BR = 1, // Bottom Right
TR, // Top Right
TL // Top Left
}
}
}