using DevExpress.XtraEditors;
|
|
namespace TProduct.WinFrmUI
|
{
|
/// <summary>
|
/// 程序窗体基类
|
/// </summary>
|
public class BaseForm : XtraForm
|
{
|
public BaseForm()
|
{
|
//窗体启动位置
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
}
|
|
private void InitializeComponent()
|
{
|
this.SuspendLayout();
|
//
|
// BaseForm
|
//
|
this.ClientSize = new System.Drawing.Size(298, 268);
|
this.MaximizeBox = false;
|
this.Name = "BaseForm";
|
this.ResumeLayout(false);
|
|
}
|
}
|
}
|