mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-12 04:06:36 +08:00
15 lines
487 B
C#
15 lines
487 B
C#
namespace Fluent.Extensibility
|
|
{
|
|
/// <summary>
|
|
/// Interface which is used to signal size changes
|
|
/// </summary>
|
|
public interface IRibbonSizeChangedSink
|
|
{
|
|
/// <summary>
|
|
/// Called when the size is changed
|
|
/// </summary>
|
|
/// <param name="previous">Size before change</param>
|
|
/// <param name="current">Size after change</param>
|
|
void OnSizePropertyChanged(RibbonControlSize previous, RibbonControlSize current);
|
|
}
|
|
} |