mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-07 09:46:37 +08:00
23 lines
635 B
C#
23 lines
635 B
C#
namespace Fluent
|
|
{
|
|
/// <summary>
|
|
/// Base interface for Fluent controls
|
|
/// </summary>
|
|
public interface IRibbonControl : IHeaderedControl, IKeyTipedControl, ILogicalChildSupport
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets Size for the element
|
|
/// </summary>
|
|
RibbonControlSize Size { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets SizeDefinition for element
|
|
/// </summary>
|
|
RibbonControlSizeDefinition SizeDefinition { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets Icon for the element
|
|
/// </summary>
|
|
object Icon { get; set; }
|
|
}
|
|
} |