blob: 987479ef57c338a2768021d57c13b9de637ae6e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System.Windows;
using System.Windows.Controls;
namespace MaterialDesignThemes.Wpf
{
public class Icon : Control
{
public static readonly DependencyProperty TypeProperty = DependencyProperty.Register(
nameof(Type), typeof (IconType), typeof (Icon), new PropertyMetadata(default(IconType)));
/// <summary>
/// Gets or sets the name of icon being displayed.
/// </summary>
public IconType Type
{
get { return (IconType) GetValue(TypeProperty); }
set { SetValue(TypeProperty, value); }
}
}
}
|