SettingsForm.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. namespace Oreo.BigBirdDeployer.Views
  2. {
  3. partial class SettingsForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.BTSave = new System.Windows.Forms.Button();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.textBox2 = new System.Windows.Forms.TextBox();
  33. this.BTCancel = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // BTSave
  37. //
  38. this.BTSave.Location = new System.Drawing.Point(182, 242);
  39. this.BTSave.Name = "BTSave";
  40. this.BTSave.Size = new System.Drawing.Size(75, 23);
  41. this.BTSave.TabIndex = 0;
  42. this.BTSave.Text = "保存";
  43. this.BTSave.UseVisualStyleBackColor = true;
  44. this.BTSave.Click += new System.EventHandler(this.BTSave_Click);
  45. //
  46. // label1
  47. //
  48. this.label1.AutoSize = true;
  49. this.label1.Location = new System.Drawing.Point(35, 42);
  50. this.label1.Name = "label1";
  51. this.label1.Size = new System.Drawing.Size(65, 12);
  52. this.label1.TabIndex = 1;
  53. this.label1.Text = "资料库路径";
  54. //
  55. // textBox1
  56. //
  57. this.textBox1.Location = new System.Drawing.Point(154, 39);
  58. this.textBox1.Name = "textBox1";
  59. this.textBox1.Size = new System.Drawing.Size(235, 21);
  60. this.textBox1.TabIndex = 2;
  61. //
  62. // label2
  63. //
  64. this.label2.AutoSize = true;
  65. this.label2.Location = new System.Drawing.Point(35, 97);
  66. this.label2.Name = "label2";
  67. this.label2.Size = new System.Drawing.Size(77, 12);
  68. this.label2.TabIndex = 3;
  69. this.label2.Text = "临时文件路径";
  70. //
  71. // textBox2
  72. //
  73. this.textBox2.Location = new System.Drawing.Point(154, 94);
  74. this.textBox2.Name = "textBox2";
  75. this.textBox2.Size = new System.Drawing.Size(235, 21);
  76. this.textBox2.TabIndex = 4;
  77. //
  78. // BTCancel
  79. //
  80. this.BTCancel.Location = new System.Drawing.Point(314, 242);
  81. this.BTCancel.Name = "BTCancel";
  82. this.BTCancel.Size = new System.Drawing.Size(75, 23);
  83. this.BTCancel.TabIndex = 5;
  84. this.BTCancel.Text = "取消";
  85. this.BTCancel.UseVisualStyleBackColor = true;
  86. this.BTCancel.Click += new System.EventHandler(this.BTCancel_Click);
  87. //
  88. // SettingsForm
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.ClientSize = new System.Drawing.Size(435, 293);
  93. this.Controls.Add(this.BTCancel);
  94. this.Controls.Add(this.textBox2);
  95. this.Controls.Add(this.label2);
  96. this.Controls.Add(this.textBox1);
  97. this.Controls.Add(this.label1);
  98. this.Controls.Add(this.BTSave);
  99. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  100. this.MaximizeBox = false;
  101. this.MinimizeBox = false;
  102. this.Name = "SettingsForm";
  103. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  104. this.Text = "设置";
  105. this.ResumeLayout(false);
  106. this.PerformLayout();
  107. }
  108. #endregion
  109. private System.Windows.Forms.Button BTSave;
  110. private System.Windows.Forms.Label label1;
  111. private System.Windows.Forms.TextBox textBox1;
  112. private System.Windows.Forms.Label label2;
  113. private System.Windows.Forms.TextBox textBox2;
  114. private System.Windows.Forms.Button BTCancel;
  115. }
  116. }