17 lines
367 B
C#
17 lines
367 B
C#
namespace AntDesign.WPF.Controls
|
|
{
|
|
using System.Windows;
|
|
|
|
public class TabControl : System.Windows.Controls.TabControl
|
|
{
|
|
#region Constructors
|
|
|
|
static TabControl()
|
|
{
|
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(typeof(TabControl)));
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|