Files
aistudio-wpf-diagram/Fluent.Ribbon/Fluent.Ribbon/IHeaderedControl.cs
2021-07-23 09:42:22 +08:00

13 lines
276 B
C#

namespace Fluent
{
/// <summary>
/// Represents a control that has a header.
/// </summary>
public interface IHeaderedControl
{
/// <summary>
/// Gets or sets the header.
/// </summary>
object Header { get; set; }
}
}