16 lines
322 B
C#
16 lines
322 B
C#
|
|
|
|
|
|
namespace WPFluent.Controls;
|
|
|
|
/// <summary>
|
|
/// Control changing its properties or appearance depending on the theme.
|
|
/// </summary>
|
|
public interface IThemeControl
|
|
{
|
|
/// <summary>
|
|
/// Gets the theme that is currently set.
|
|
/// </summary>
|
|
public Appearance.ApplicationTheme ApplicationTheme { get; }
|
|
}
|