WinFormTools/WinformGeneralDeveloperFrame/FrmBaseEdit.Designer.cs

74 lines
2.8 KiB
C#

namespace WinformGeneralDeveloperFrame
{
partial class FrmBaseEdit
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.btnOK = new DevExpress.XtraEditors.SimpleButton();
this.btnCanel = new DevExpress.XtraEditors.SimpleButton();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(442, 353);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 0;
this.btnOK.Text = "保存";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCanel
//
this.btnCanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCanel.Location = new System.Drawing.Point(539, 353);
this.btnCanel.Name = "btnCanel";
this.btnCanel.Size = new System.Drawing.Size(75, 23);
this.btnCanel.TabIndex = 1;
this.btnCanel.Text = "取消";
this.btnCanel.Click += new System.EventHandler(this.btnCanel_Click);
//
// FrmBaseEdit
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(638, 388);
this.Controls.Add(this.btnCanel);
this.Controls.Add(this.btnOK);
this.Name = "FrmBaseEdit";
this.Text = "FrmBaseEdit";
this.ResumeLayout(false);
}
#endregion
protected DevExpress.XtraEditors.SimpleButton btnOK;
protected DevExpress.XtraEditors.SimpleButton btnCanel;
}
}