You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
5.2 KiB
117 lines
5.2 KiB
namespace ICSSoft.Frame.APP
|
|
{
|
|
partial class FormReadExcel
|
|
{
|
|
/// <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.labelControl1 = new DevExpress.XtraEditors.LabelControl();
|
|
this.txtUrl = new DevExpress.XtraEditors.ButtonEdit();
|
|
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
|
|
this.txtSheet = new DevExpress.XtraEditors.ComboBoxEdit();
|
|
this.btnOk = new DevExpress.XtraEditors.SimpleButton();
|
|
((System.ComponentModel.ISupportInitialize)(this.txtUrl.Properties)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.txtSheet.Properties)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelControl1
|
|
//
|
|
this.labelControl1.Location = new System.Drawing.Point(5, 8);
|
|
this.labelControl1.Name = "labelControl1";
|
|
this.labelControl1.Size = new System.Drawing.Size(56, 14);
|
|
this.labelControl1.TabIndex = 0;
|
|
this.labelControl1.Text = "excel文件:";
|
|
//
|
|
// txtUrl
|
|
//
|
|
this.txtUrl.Location = new System.Drawing.Point(67, 6);
|
|
this.txtUrl.Name = "txtUrl";
|
|
this.txtUrl.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
|
|
new DevExpress.XtraEditors.Controls.EditorButton()});
|
|
this.txtUrl.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
|
|
this.txtUrl.Size = new System.Drawing.Size(278, 20);
|
|
this.txtUrl.TabIndex = 1;
|
|
this.txtUrl.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.txtUrl_ButtonClick);
|
|
//
|
|
// labelControl2
|
|
//
|
|
this.labelControl2.Location = new System.Drawing.Point(5, 32);
|
|
this.labelControl2.Name = "labelControl2";
|
|
this.labelControl2.Size = new System.Drawing.Size(40, 14);
|
|
this.labelControl2.TabIndex = 2;
|
|
this.labelControl2.Text = "单元表:";
|
|
//
|
|
// txtSheet
|
|
//
|
|
this.txtSheet.Location = new System.Drawing.Point(67, 32);
|
|
this.txtSheet.Name = "txtSheet";
|
|
this.txtSheet.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
|
|
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
|
|
this.txtSheet.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
|
|
this.txtSheet.Size = new System.Drawing.Size(278, 20);
|
|
this.txtSheet.TabIndex = 3;
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.Location = new System.Drawing.Point(270, 56);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOk.TabIndex = 4;
|
|
this.btnOk.Text = "确定";
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// FormReadExcel
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(356, 87);
|
|
this.Controls.Add(this.btnOk);
|
|
this.Controls.Add(this.txtSheet);
|
|
this.Controls.Add(this.labelControl2);
|
|
this.Controls.Add(this.txtUrl);
|
|
this.Controls.Add(this.labelControl1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FormReadExcel";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "EXCEL文件选择";
|
|
((System.ComponentModel.ISupportInitialize)(this.txtUrl.Properties)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.txtSheet.Properties)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DevExpress.XtraEditors.LabelControl labelControl1;
|
|
private DevExpress.XtraEditors.ButtonEdit txtUrl;
|
|
private DevExpress.XtraEditors.LabelControl labelControl2;
|
|
private DevExpress.XtraEditors.ComboBoxEdit txtSheet;
|
|
private DevExpress.XtraEditors.SimpleButton btnOk;
|
|
}
|
|
}
|