SettingsForm.Designer.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. namespace Oreo.FileMan.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.textBox1 = new System.Windows.Forms.TextBox();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.BtClose = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // textBox1
  36. //
  37. this.textBox1.Location = new System.Drawing.Point(91, 90);
  38. this.textBox1.Name = "textBox1";
  39. this.textBox1.Size = new System.Drawing.Size(100, 21);
  40. this.textBox1.TabIndex = 4;
  41. //
  42. // button1
  43. //
  44. this.button1.Location = new System.Drawing.Point(214, 90);
  45. this.button1.Name = "button1";
  46. this.button1.Size = new System.Drawing.Size(75, 23);
  47. this.button1.TabIndex = 5;
  48. this.button1.Text = "button1";
  49. this.button1.UseVisualStyleBackColor = true;
  50. //
  51. // label1
  52. //
  53. this.label1.AutoSize = true;
  54. this.label1.ForeColor = System.Drawing.Color.White;
  55. this.label1.Location = new System.Drawing.Point(24, 90);
  56. this.label1.Name = "label1";
  57. this.label1.Size = new System.Drawing.Size(41, 12);
  58. this.label1.TabIndex = 6;
  59. this.label1.Text = "label1";
  60. //
  61. // label2
  62. //
  63. this.label2.AutoSize = true;
  64. this.label2.ForeColor = System.Drawing.Color.White;
  65. this.label2.Location = new System.Drawing.Point(26, 133);
  66. this.label2.Name = "label2";
  67. this.label2.Size = new System.Drawing.Size(41, 12);
  68. this.label2.TabIndex = 7;
  69. this.label2.Text = "label2";
  70. //
  71. // BtClose
  72. //
  73. this.BtClose.FlatAppearance.BorderSize = 0;
  74. this.BtClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  75. this.BtClose.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  76. this.BtClose.ForeColor = System.Drawing.Color.White;
  77. this.BtClose.Location = new System.Drawing.Point(298, 12);
  78. this.BtClose.Name = "BtClose";
  79. this.BtClose.Size = new System.Drawing.Size(30, 23);
  80. this.BtClose.TabIndex = 20;
  81. this.BtClose.Text = "X";
  82. this.BtClose.UseVisualStyleBackColor = true;
  83. this.BtClose.Click += new System.EventHandler(this.BtClose_Click);
  84. //
  85. // SettingsForm
  86. //
  87. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  88. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  89. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(43)))), ((int)(((byte)(54)))));
  90. this.ClientSize = new System.Drawing.Size(340, 274);
  91. this.Controls.Add(this.BtClose);
  92. this.Controls.Add(this.label2);
  93. this.Controls.Add(this.label1);
  94. this.Controls.Add(this.button1);
  95. this.Controls.Add(this.textBox1);
  96. this.Name = "SettingsForm";
  97. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  98. this.Text = "SettingsForm";
  99. this.Load += new System.EventHandler(this.SettingsForm_Load);
  100. this.ResumeLayout(false);
  101. this.PerformLayout();
  102. }
  103. #endregion
  104. private System.Windows.Forms.TextBox textBox1;
  105. private System.Windows.Forms.Button button1;
  106. private System.Windows.Forms.Label label1;
  107. private System.Windows.Forms.Label label2;
  108. private System.Windows.Forms.Button BtClose;
  109. }
  110. }