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

13 lines
266 B
C#

namespace Fluent
{
/// <summary>
/// Meant to support interop scenarios
/// </summary>
public interface IRibbonWindow
{
/// <summary>
/// Gets the titlebar
/// </summary>
RibbonTitleBar TitleBar { get; }
}
}