16 lines
378 B
C#
16 lines
378 B
C#
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace WPFluent.Controls;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// UI <see cref="System.Windows.Controls.Control"/> with <see cref="ControlAppearance"/> attributes.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IAppearanceControl
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets the <see cref="Appearance"/> of the control, if available.
|
|||
|
|
/// </summary>
|
|||
|
|
public ControlAppearance Appearance { get; set; }
|
|||
|
|
}
|