mirror of
https://gitee.com/AntdUI/AntdUI.git
synced 2026-03-17 11:10:43 +08:00
20 lines
529 B
C#
20 lines
529 B
C#
// Copyright (C) Tom <17379620>. All Rights Reserved.
|
|
// AntdUI WinForm Library | Licensed under Apache-2.0 License
|
|
// Gitee: https://gitee.com/AntdUI/AntdUI
|
|
// GitHub: https://github.com/AntdUI/AntdUI
|
|
// GitCode: https://gitcode.com/AntdUI/AntdUI
|
|
|
|
using System.Windows.Forms;
|
|
|
|
namespace Demo.Controls
|
|
{
|
|
public partial class ColorPicker : UserControl
|
|
{
|
|
AntdUI.BaseForm form;
|
|
public ColorPicker(AntdUI.BaseForm _form)
|
|
{
|
|
form = _form;
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |