Files
Shrlalgo.RvKits/AntdWpf/Controls/TabControl.cs
2025-07-12 23:31:32 +08:00

17 lines
361 B
C#

namespace AntdWpf.Controls
{
using System.Windows;
public class TabControl : System.Windows.Controls.TabControl
{
#region Constructors
static TabControl()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(typeof(TabControl)));
}
#endregion
}
}