| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- namespace Oreo.BigBirdDeployer.Views
- {
- partial class SettingsForm
- {
- /// <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.BTSave = new System.Windows.Forms.Button();
- this.label1 = new System.Windows.Forms.Label();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.textBox2 = new System.Windows.Forms.TextBox();
- this.BTCancel = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // BTSave
- //
- this.BTSave.Location = new System.Drawing.Point(182, 242);
- this.BTSave.Name = "BTSave";
- this.BTSave.Size = new System.Drawing.Size(75, 23);
- this.BTSave.TabIndex = 0;
- this.BTSave.Text = "保存";
- this.BTSave.UseVisualStyleBackColor = true;
- this.BTSave.Click += new System.EventHandler(this.BTSave_Click);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(35, 42);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(65, 12);
- this.label1.TabIndex = 1;
- this.label1.Text = "资料库路径";
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(154, 39);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(235, 21);
- this.textBox1.TabIndex = 2;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(35, 97);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(77, 12);
- this.label2.TabIndex = 3;
- this.label2.Text = "临时文件路径";
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(154, 94);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(235, 21);
- this.textBox2.TabIndex = 4;
- //
- // BTCancel
- //
- this.BTCancel.Location = new System.Drawing.Point(314, 242);
- this.BTCancel.Name = "BTCancel";
- this.BTCancel.Size = new System.Drawing.Size(75, 23);
- this.BTCancel.TabIndex = 5;
- this.BTCancel.Text = "取消";
- this.BTCancel.UseVisualStyleBackColor = true;
- this.BTCancel.Click += new System.EventHandler(this.BTCancel_Click);
- //
- // SettingsForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(435, 293);
- this.Controls.Add(this.BTCancel);
- this.Controls.Add(this.textBox2);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.BTSave);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "SettingsForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "设置";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button BTSave;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox textBox2;
- private System.Windows.Forms.Button BTCancel;
- }
- }
|