diff --git a/MBS.Framework/MBS.Framework.csproj b/MBS.Framework/MBS.Framework.csproj
index 5f5d503..f9a69f1 100644
--- a/MBS.Framework/MBS.Framework.csproj
+++ b/MBS.Framework/MBS.Framework.csproj
@@ -112,6 +112,8 @@
+
+
@@ -123,6 +125,7 @@
+
diff --git a/MBS.Framework/UserInterface/HorizontalAlignment.cs b/MBS.Framework/UserInterface/HorizontalAlignment.cs
new file mode 100644
index 0000000..0962203
--- /dev/null
+++ b/MBS.Framework/UserInterface/HorizontalAlignment.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace MBS.Framework.UserInterface
+{
+ public enum HorizontalAlignment
+ {
+ Default = -1,
+ Left = 0,
+ Center = 1,
+ Right = 2,
+ Justify = 3
+ }
+}
diff --git a/MBS.Framework/UserInterface/VerticalAlignment.cs b/MBS.Framework/UserInterface/VerticalAlignment.cs
new file mode 100644
index 0000000..da26b27
--- /dev/null
+++ b/MBS.Framework/UserInterface/VerticalAlignment.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace MBS.Framework.UserInterface
+{
+ public enum VerticalAlignment
+ {
+ Default = -1,
+ Top = 1,
+ Middle = 2,
+ Bottom = 3,
+ Baseline = 4
+ }
+}