Files
Shrlalgo.RvKits/AntdWpf/Controls/CheckableTag.cs
ShrlAlgo 4d35cadb56 更新
2025-07-11 09:20:23 +08:00

17 lines
450 B
C#

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)));
}
}
}