WinFormTools/WinformGeneralDeveloperFrame/FrmBaseEdit.Designer.cs

77 lines
3.0 KiB
C#
Raw Normal View History

2021-04-13 17:46:18 +08:00

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)));
2023-05-05 18:07:22 +08:00
this.btnOK.Location = new System.Drawing.Point(511, 461);
this.btnOK.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
2021-04-13 17:46:18 +08:00
this.btnOK.Name = "btnOK";
2023-05-05 18:07:22 +08:00
this.btnOK.Size = new System.Drawing.Size(86, 30);
2021-04-13 17:46:18 +08:00
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)));
2023-05-05 18:07:22 +08:00
this.btnCanel.Location = new System.Drawing.Point(622, 461);
this.btnCanel.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
2021-04-13 17:46:18 +08:00
this.btnCanel.Name = "btnCanel";
2023-05-05 18:07:22 +08:00
this.btnCanel.Size = new System.Drawing.Size(86, 30);
2021-04-13 17:46:18 +08:00
this.btnCanel.TabIndex = 1;
this.btnCanel.Text = "取消";
this.btnCanel.Click += new System.EventHandler(this.btnCanel_Click);
//
// FrmBaseEdit
//
2023-05-05 18:07:22 +08:00
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 18F);
2021-04-13 17:46:18 +08:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2023-05-05 18:07:22 +08:00
this.ClientSize = new System.Drawing.Size(735, 506);
2021-04-13 17:46:18 +08:00
this.Controls.Add(this.btnCanel);
this.Controls.Add(this.btnOK);
2023-05-05 18:07:22 +08:00
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
2021-04-13 17:46:18 +08:00
this.Name = "FrmBaseEdit";
this.Text = "FrmBaseEdit";
this.ResumeLayout(false);
}
#endregion
protected DevExpress.XtraEditors.SimpleButton btnOK;
protected DevExpress.XtraEditors.SimpleButton btnCanel;
}
}