namespace SLZ_4 { partial class ConfigStorage { /// /// 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConfigStorage)); this.label1 = new System.Windows.Forms.Label(); this.checkTxt = new System.Windows.Forms.CheckBox(); this.checkCSV = new System.Windows.Forms.CheckBox(); this.checkSQL = new System.Windows.Forms.CheckBox(); this.checkExcel = new System.Windows.Forms.CheckBox(); this.buttonSetSQL = new System.Windows.Forms.Button(); this.textPath = new Sunny.UI.UITextBox(); this.buttonSet = new Sunny.UI.UIButton(); this.buttonPath = new Sunny.UI.UIButton(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(25, 45); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(42, 14); this.label1.TabIndex = 0; this.label1.Text = "路径:"; // // checkTxt // this.checkTxt.AutoSize = true; this.checkTxt.Location = new System.Drawing.Point(235, 101); this.checkTxt.Name = "checkTxt"; this.checkTxt.Size = new System.Drawing.Size(89, 18); this.checkTxt.TabIndex = 3; this.checkTxt.Text = "导出到TXT"; this.checkTxt.UseVisualStyleBackColor = true; // // checkCSV // this.checkCSV.AutoSize = true; this.checkCSV.Location = new System.Drawing.Point(235, 148); this.checkCSV.Name = "checkCSV"; this.checkCSV.Size = new System.Drawing.Size(89, 18); this.checkCSV.TabIndex = 4; this.checkCSV.Text = "导出到CSV"; this.checkCSV.UseVisualStyleBackColor = true; // // checkSQL // this.checkSQL.AutoSize = true; this.checkSQL.Location = new System.Drawing.Point(12, 206); this.checkSQL.Name = "checkSQL"; this.checkSQL.Size = new System.Drawing.Size(131, 18); this.checkSQL.TabIndex = 5; this.checkSQL.Text = "导出到SQLServer"; this.checkSQL.UseVisualStyleBackColor = true; this.checkSQL.Visible = false; this.checkSQL.CheckedChanged += new System.EventHandler(this.checkSQL_CheckedChanged); // // checkExcel // this.checkExcel.AutoSize = true; this.checkExcel.Location = new System.Drawing.Point(235, 206); this.checkExcel.Name = "checkExcel"; this.checkExcel.Size = new System.Drawing.Size(103, 18); this.checkExcel.TabIndex = 6; this.checkExcel.Text = "导出到Excel"; this.checkExcel.UseVisualStyleBackColor = true; // // buttonSetSQL // this.buttonSetSQL.Location = new System.Drawing.Point(12, 263); this.buttonSetSQL.Name = "buttonSetSQL"; this.buttonSetSQL.Size = new System.Drawing.Size(89, 32); this.buttonSetSQL.TabIndex = 7; this.buttonSetSQL.Text = "SQL设置"; this.buttonSetSQL.UseVisualStyleBackColor = true; this.buttonSetSQL.Visible = false; this.buttonSetSQL.Click += new System.EventHandler(this.buttonSetSQL_Click); // // textPath // this.textPath.Cursor = System.Windows.Forms.Cursors.IBeam; this.textPath.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.textPath.Location = new System.Drawing.Point(88, 38); this.textPath.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.textPath.MinimumSize = new System.Drawing.Size(1, 16); this.textPath.Name = "textPath"; this.textPath.Padding = new System.Windows.Forms.Padding(5); this.textPath.ShowText = false; this.textPath.Size = new System.Drawing.Size(418, 29); this.textPath.TabIndex = 9; this.textPath.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; this.textPath.Watermark = ""; // // buttonSet // this.buttonSet.Cursor = System.Windows.Forms.Cursors.Hand; this.buttonSet.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.buttonSet.Location = new System.Drawing.Point(235, 260); this.buttonSet.MinimumSize = new System.Drawing.Size(1, 1); this.buttonSet.Name = "buttonSet"; this.buttonSet.Size = new System.Drawing.Size(100, 35); this.buttonSet.TabIndex = 10; this.buttonSet.Text = "应用设置"; this.buttonSet.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.buttonSet.Click += new System.EventHandler(this.buttonSet_Click); // // buttonPath // this.buttonPath.Cursor = System.Windows.Forms.Cursors.Hand; this.buttonPath.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.buttonPath.Location = new System.Drawing.Point(518, 34); this.buttonPath.MinimumSize = new System.Drawing.Size(1, 1); this.buttonPath.Name = "buttonPath"; this.buttonPath.Size = new System.Drawing.Size(100, 35); this.buttonPath.TabIndex = 11; this.buttonPath.Text = "选择路径"; this.buttonPath.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.buttonPath.Click += new System.EventHandler(this.buttonPath_Click); // // ConfigStorage // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.LightBlue; this.ClientSize = new System.Drawing.Size(630, 317); this.Controls.Add(this.buttonPath); this.Controls.Add(this.buttonSet); this.Controls.Add(this.textPath); this.Controls.Add(this.buttonSetSQL); this.Controls.Add(this.checkExcel); this.Controls.Add(this.checkSQL); this.Controls.Add(this.checkCSV); this.Controls.Add(this.checkTxt); this.Controls.Add(this.label1); this.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "ConfigStorage"; this.Text = "ConfigStorage"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.CheckBox checkTxt; private System.Windows.Forms.CheckBox checkCSV; private System.Windows.Forms.CheckBox checkSQL; private System.Windows.Forms.CheckBox checkExcel; private System.Windows.Forms.Button buttonSetSQL; private Sunny.UI.UITextBox textPath; private Sunny.UI.UIButton buttonSet; private Sunny.UI.UIButton buttonPath; } }