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.
137 lines
5.6 KiB
137 lines
5.6 KiB
3 years ago
|
namespace Stone.Common
|
||
|
{
|
||
|
partial class frmExport
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 必需的设计器变量。
|
||
|
/// </summary>
|
||
|
private System.ComponentModel.IContainer components = null;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 清理所有正在使用的资源。
|
||
|
/// </summary>
|
||
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
||
|
protected override void Dispose(bool disposing)
|
||
|
{
|
||
|
if (disposing && (components != null))
|
||
|
{
|
||
|
components.Dispose();
|
||
|
}
|
||
|
base.Dispose(disposing);
|
||
|
}
|
||
|
|
||
|
#region Windows 窗体设计器生成的代码
|
||
|
|
||
|
/// <summary>
|
||
|
/// 设计器支持所需的方法 - 不要
|
||
|
/// 使用代码编辑器修改此方法的内容。
|
||
|
/// </summary>
|
||
|
private void InitializeComponent()
|
||
|
{
|
||
|
this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
|
||
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
||
|
this.rbtExcel = new System.Windows.Forms.RadioButton();
|
||
|
this.btnOK = new System.Windows.Forms.Button();
|
||
|
this.btnCancel = new System.Windows.Forms.Button();
|
||
|
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
|
||
|
this.groupBox1.SuspendLayout();
|
||
|
this.groupBox2.SuspendLayout();
|
||
|
this.SuspendLayout();
|
||
|
//
|
||
|
// checkedListBox1
|
||
|
//
|
||
|
this.checkedListBox1.FormattingEnabled = true;
|
||
|
this.checkedListBox1.Location = new System.Drawing.Point(13, 20);
|
||
|
this.checkedListBox1.Name = "checkedListBox1";
|
||
|
this.checkedListBox1.Size = new System.Drawing.Size(218, 292);
|
||
|
this.checkedListBox1.TabIndex = 0;
|
||
|
//
|
||
|
// groupBox1
|
||
|
//
|
||
|
this.groupBox1.Controls.Add(this.checkedListBox1);
|
||
|
this.groupBox1.Location = new System.Drawing.Point(13, 12);
|
||
|
this.groupBox1.Name = "groupBox1";
|
||
|
this.groupBox1.Size = new System.Drawing.Size(246, 325);
|
||
|
this.groupBox1.TabIndex = 1;
|
||
|
this.groupBox1.TabStop = false;
|
||
|
this.groupBox1.Text = "请选择导出字段";
|
||
|
//
|
||
|
// groupBox2
|
||
|
//
|
||
|
this.groupBox2.Controls.Add(this.rbtExcel);
|
||
|
this.groupBox2.Location = new System.Drawing.Point(271, 13);
|
||
|
this.groupBox2.Name = "groupBox2";
|
||
|
this.groupBox2.Size = new System.Drawing.Size(171, 100);
|
||
|
this.groupBox2.TabIndex = 2;
|
||
|
this.groupBox2.TabStop = false;
|
||
|
this.groupBox2.Text = "请选择导出格式";
|
||
|
//
|
||
|
// rbtExcel
|
||
|
//
|
||
|
this.rbtExcel.AutoSize = true;
|
||
|
this.rbtExcel.Checked = true;
|
||
|
this.rbtExcel.Location = new System.Drawing.Point(16, 25);
|
||
|
this.rbtExcel.Name = "rbtExcel";
|
||
|
this.rbtExcel.Size = new System.Drawing.Size(77, 16);
|
||
|
this.rbtExcel.TabIndex = 0;
|
||
|
this.rbtExcel.TabStop = true;
|
||
|
this.rbtExcel.Text = "Excel文件";
|
||
|
this.rbtExcel.UseVisualStyleBackColor = true;
|
||
|
//
|
||
|
// btnOK
|
||
|
//
|
||
|
this.btnOK.Location = new System.Drawing.Point(366, 267);
|
||
|
this.btnOK.Name = "btnOK";
|
||
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
||
|
this.btnOK.TabIndex = 3;
|
||
|
this.btnOK.Text = "导出";
|
||
|
this.btnOK.UseVisualStyleBackColor = true;
|
||
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
||
|
//
|
||
|
// btnCancel
|
||
|
//
|
||
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||
|
this.btnCancel.Location = new System.Drawing.Point(366, 301);
|
||
|
this.btnCancel.Name = "btnCancel";
|
||
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
||
|
this.btnCancel.TabIndex = 4;
|
||
|
this.btnCancel.Text = "关闭";
|
||
|
this.btnCancel.UseVisualStyleBackColor = true;
|
||
|
//
|
||
|
// frmExport
|
||
|
//
|
||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
|
this.CancelButton = this.btnCancel;
|
||
|
this.ClientSize = new System.Drawing.Size(457, 349);
|
||
|
this.Controls.Add(this.btnCancel);
|
||
|
this.Controls.Add(this.btnOK);
|
||
|
this.Controls.Add(this.groupBox2);
|
||
|
this.Controls.Add(this.groupBox1);
|
||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||
|
this.MaximizeBox = false;
|
||
|
this.MinimizeBox = false;
|
||
|
this.Name = "frmExport";
|
||
|
this.ShowInTaskbar = false;
|
||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||
|
this.Text = "导出文件";
|
||
|
this.Load += new System.EventHandler(this.frmExport_Load);
|
||
|
this.groupBox1.ResumeLayout(false);
|
||
|
this.groupBox2.ResumeLayout(false);
|
||
|
this.groupBox2.PerformLayout();
|
||
|
this.ResumeLayout(false);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
private System.Windows.Forms.CheckedListBox checkedListBox1;
|
||
|
private System.Windows.Forms.GroupBox groupBox1;
|
||
|
private System.Windows.Forms.GroupBox groupBox2;
|
||
|
private System.Windows.Forms.RadioButton rbtExcel;
|
||
|
private System.Windows.Forms.Button btnOK;
|
||
|
private System.Windows.Forms.Button btnCancel;
|
||
|
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
|
||
|
}
|
||
|
}
|