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

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; }
}
}