Files
Shrlalgo.RvKits/AntdWpf/Controls/CheckableTag.cs

17 lines
450 B
C#
Raw Normal View History

2025-07-11 09:20:23 +08:00
namespace AntdWpf.Controls
{
using System.Windows;
using System.Windows.Controls.Primitives;
/// <summary>
/// CheckableTag works like Checkbox, click it to toggle checked.
/// </summary>
public class CheckableTag : ToggleButton
{
static CheckableTag()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(CheckableTag), new FrameworkPropertyMetadata(typeof(CheckableTag)));
}
}
}