antdui-demo/Views/TabsDemo.cs

23 lines
479 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AntdUIDemo.Views
{
public partial class TabsDemo : UserControl
{
private AntdUI.Window window;
public TabsDemo(AntdUI.Window _window)
{
window = _window;
InitializeComponent();
}
}
}