move HorizontalAlignment and VerticalAlignment from MBS.Framework.UserInterface library to MBS.Framework library
This commit is contained in:
parent
9481a8fa23
commit
225339bd88
@ -112,6 +112,8 @@
|
||||
<Compile Include="CommandStylePreset.cs" />
|
||||
<Compile Include="Settings\CustomSetting.cs" />
|
||||
<Compile Include="CardinalDirection.cs" />
|
||||
<Compile Include="UserInterface\HorizontalAlignment.cs" />
|
||||
<Compile Include="UserInterface\VerticalAlignment.cs" />
|
||||
<Compile Include="CustomSettingsProvider.cs" />
|
||||
<Compile Include="Settings\VersionSetting.cs" />
|
||||
</ItemGroup>
|
||||
@ -123,6 +125,7 @@
|
||||
<Folder Include="Scripting\" />
|
||||
<Folder Include="Scripting\Strings\" />
|
||||
<Folder Include="Settings\" />
|
||||
<Folder Include="UserInterface\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
16
MBS.Framework/UserInterface/HorizontalAlignment.cs
Normal file
16
MBS.Framework/UserInterface/HorizontalAlignment.cs
Normal file
@ -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
|
||||
}
|
||||
}
|
||||
16
MBS.Framework/UserInterface/VerticalAlignment.cs
Normal file
16
MBS.Framework/UserInterface/VerticalAlignment.cs
Normal file
@ -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
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user