move HorizontalAlignment and VerticalAlignment from MBS.Framework.UserInterface library to MBS.Framework library

This commit is contained in:
Michael Becker 2021-05-22 02:23:19 -04:00
parent 9481a8fa23
commit 225339bd88
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C
3 changed files with 35 additions and 0 deletions

View File

@ -112,6 +112,8 @@
<Compile Include="CommandStylePreset.cs" /> <Compile Include="CommandStylePreset.cs" />
<Compile Include="Settings\CustomSetting.cs" /> <Compile Include="Settings\CustomSetting.cs" />
<Compile Include="CardinalDirection.cs" /> <Compile Include="CardinalDirection.cs" />
<Compile Include="UserInterface\HorizontalAlignment.cs" />
<Compile Include="UserInterface\VerticalAlignment.cs" />
<Compile Include="CustomSettingsProvider.cs" /> <Compile Include="CustomSettingsProvider.cs" />
<Compile Include="Settings\VersionSetting.cs" /> <Compile Include="Settings\VersionSetting.cs" />
</ItemGroup> </ItemGroup>
@ -123,6 +125,7 @@
<Folder Include="Scripting\" /> <Folder Include="Scripting\" />
<Folder Include="Scripting\Strings\" /> <Folder Include="Scripting\Strings\" />
<Folder Include="Settings\" /> <Folder Include="Settings\" />
<Folder Include="UserInterface\" />
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project> </Project>

View 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
}
}

View 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
}
}