tangxu
2024-10-24 c7a67ab24f476b0f8593fc61362d3bb8b262aa3e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace DPumpHydr.WinFrmUI.RLT.Enum.Metro
{
    #region TileAlignEnum
 
    public enum TileAlign
    {
        // Sets the Tile to Topleft corner.
        Topleft,
 
        // Sets the Tile to TopRight corner.
        TopRight,
 
        // Sets the Tile to BottmLeft corner.
        BottmLeft,
 
        // Sets the Tile to BottomRight corner.
        BottomRight,
 
        // Sets the Tile to TopCenter corner.
        TopCenter,
 
        // Sets the Tile to BottomCenter corner.
        BottomCenter
    }
 
    #endregion
}