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

18 lines
404 B
C#

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