16 lines
307 B
C#
16 lines
307 B
C#
|
|
|
|
|
|
namespace WPFluent.Controls;
|
|
|
|
/// <summary>
|
|
/// Control that allows you to set an icon in it with an <see cref="Icon"/>.
|
|
/// </summary>
|
|
public interface IIconControl
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets displayed <see cref="IconElement"/>.
|
|
/// </summary>
|
|
IconElement? Icon { get; set; }
|
|
}
|