|
//---------------------------------------------------------------------------
//
// <copyright file="RelativeHeaderPosition.cs" company="Microsoft">
// Copyright (C) Microsoft Corporation. All rights reserved.
// </copyright>
//
// Description: Relative Header Position implementation
//
//---------------------------------------------------------------------------
namespace System.Windows.Controls.Primitives
{
/// <summary>
/// RelativeHeaderPosition enum is used to indicate where the Header for a GroupItem or a TreeViewItem is positioned with respect to its items.
/// </summary>
internal enum RelativeHeaderPosition
{
Top,
Bottom,
Left,
Right
}
}
|