21 lines
325 B
C#
21 lines
325 B
C#
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace WPFluent.Controls;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Decides where to put the element.
|
|||
|
|
/// </summary>
|
|||
|
|
public enum ElementPlacement
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Puts the control element on the left.
|
|||
|
|
/// </summary>
|
|||
|
|
Left,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Puts the control element on the right.
|
|||
|
|
/// </summary>
|
|||
|
|
Right,
|
|||
|
|
}
|