Files
aistudio-wpf-diagram/Others/Fluent.Ribbon/Fluent.Ribbon/IHeaderedControl.cs
2023-04-16 20:11:40 +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; }
}
}