namespace MiniSqlQuery { partial class CopyForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.rbCSV = new System.Windows.Forms.RadioButton(); this.rbTAB = new System.Windows.Forms.RadioButton(); this.rbOther = new System.Windows.Forms.RadioButton(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.txtOther = new System.Windows.Forms.TextBox(); this.xbIncludeHeaders = new System.Windows.Forms.CheckBox(); this.cancelButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // rbCSV // this.rbCSV.AutoSize = true; this.rbCSV.Location = new System.Drawing.Point(6, 18); this.rbCSV.Name = "rbCSV"; this.rbCSV.Size = new System.Drawing.Size(47, 16); this.rbCSV.TabIndex = 3; this.rbCSV.TabStop = true; this.rbCSV.Text = "逗号"; this.rbCSV.UseVisualStyleBackColor = true; // // rbTAB // this.rbTAB.AutoSize = true; this.rbTAB.Checked = true; this.rbTAB.Location = new System.Drawing.Point(6, 39); this.rbTAB.Name = "rbTAB"; this.rbTAB.Size = new System.Drawing.Size(41, 16); this.rbTAB.TabIndex = 4; this.rbTAB.TabStop = true; this.rbTAB.Text = "TAB"; this.rbTAB.UseVisualStyleBackColor = true; // // rbOther // this.rbOther.AutoSize = true; this.rbOther.Location = new System.Drawing.Point(6, 60); this.rbOther.Name = "rbOther"; this.rbOther.Size = new System.Drawing.Size(47, 16); this.rbOther.TabIndex = 5; this.rbOther.TabStop = true; this.rbOther.Text = "其他"; this.rbOther.UseVisualStyleBackColor = true; // // groupBox1 // this.groupBox1.Controls.Add(this.txtOther); this.groupBox1.Controls.Add(this.rbCSV); this.groupBox1.Controls.Add(this.rbOther); this.groupBox1.Controls.Add(this.rbTAB); this.groupBox1.Location = new System.Drawing.Point(12, 32); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(142, 84); this.groupBox1.TabIndex = 2; this.groupBox1.TabStop = false; this.groupBox1.Text = "分隔符"; // // txtOther // this.txtOther.Location = new System.Drawing.Point(63, 57); this.txtOther.Name = "txtOther"; this.txtOther.Size = new System.Drawing.Size(59, 21); this.txtOther.TabIndex = 6; this.txtOther.Text = "|"; // // xbIncludeHeaders // this.xbIncludeHeaders.AutoSize = true; this.xbIncludeHeaders.Location = new System.Drawing.Point(12, 11); this.xbIncludeHeaders.Name = "xbIncludeHeaders"; this.xbIncludeHeaders.Size = new System.Drawing.Size(84, 16); this.xbIncludeHeaders.TabIndex = 1; this.xbIncludeHeaders.Text = "包括列标题"; this.xbIncludeHeaders.UseVisualStyleBackColor = true; // // cancelButton // this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(89, 132); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(65, 21); this.cancelButton.TabIndex = 9; this.cancelButton.Text = "&C取消"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); // // okButton // this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Location = new System.Drawing.Point(12, 132); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(65, 21); this.okButton.TabIndex = 8; this.okButton.Text = "&O确定"; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // CopyForm // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(163, 161); this.Controls.Add(this.okButton); this.Controls.Add(this.cancelButton); this.Controls.Add(this.xbIncludeHeaders); this.Controls.Add(this.groupBox1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "CopyForm"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "复制"; this.Load += new System.EventHandler(this.CopyForm_Load); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.RadioButton rbCSV; private System.Windows.Forms.RadioButton rbTAB; private System.Windows.Forms.RadioButton rbOther; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.TextBox txtOther; private System.Windows.Forms.CheckBox xbIncludeHeaders; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Button okButton; } }