mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-20 00:16:36 +08:00
13 lines
276 B
C#
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; }
|
|
}
|
|
} |