WinFormTools/WinformGeneralDeveloperFrame/BaseForm.cs

22 lines
459 B
C#
Raw Normal View History

2021-04-17 15:40:26 +08:00
using DevExpress.XtraEditors;
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 WinformGeneralDeveloperFrame
{
public partial class BaseForm : DevExpress.XtraEditors.XtraUserControl
{
public BaseForm()
{
InitializeComponent();
}
}
}