Files
aistudio-wpf-diagram/Fluent.Ribbon/Fluent.Ribbon/IRibbonWindow.cs

13 lines
266 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
namespace Fluent
{
/// <summary>
/// Meant to support interop scenarios
/// </summary>
public interface IRibbonWindow
{
/// <summary>
/// Gets the titlebar
/// </summary>
RibbonTitleBar TitleBar { get; }
}
}