mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-01 22:56:35 +08:00
30 lines
607 B
C#
30 lines
607 B
C#
namespace Fluent
|
|
{
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Repesents scalable ribbon contol
|
|
/// </summary>
|
|
public interface IScalableRibbonControl
|
|
{
|
|
/// <summary>
|
|
/// Resets the scale.
|
|
/// </summary>
|
|
void ResetScale();
|
|
|
|
/// <summary>
|
|
/// Enlarge control size.
|
|
/// </summary>
|
|
void Enlarge();
|
|
|
|
/// <summary>
|
|
/// Reduce control size.
|
|
/// </summary>
|
|
void Reduce();
|
|
|
|
/// <summary>
|
|
/// Occurs when contol is scaled.
|
|
/// </summary>
|
|
event EventHandler Scaled;
|
|
}
|
|
} |