22 lines
446 B
C#
22 lines
446 B
C#
namespace VideoBrowser.Controls.AdornedControl
|
|
{
|
|
#region Enums
|
|
|
|
/// <summary>
|
|
/// Specifies the placement of the adorner in related to the adorned control.
|
|
/// </summary>
|
|
public enum AdornerPlacement
|
|
{
|
|
/// <summary>
|
|
/// Defines the Inside.
|
|
/// </summary>
|
|
Inside,
|
|
|
|
/// <summary>
|
|
/// Defines the Outside.
|
|
/// </summary>
|
|
Outside
|
|
}
|
|
|
|
#endregion Enums
|
|
} |