22 lines
412 B
C#
22 lines
412 B
C#
using AntdUI;
|
|
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 CheckBoxDemo : UserControl
|
|
{
|
|
public CheckBoxDemo()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|