EdgeForm.Designer.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. namespace Optimizer
  2. {
  3. partial class EdgeForm
  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.label1 = new System.Windows.Forms.Label();
  29. this.label2 = new System.Windows.Forms.Label();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.cancel = new System.Windows.Forms.Button();
  32. this.ok = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  39. this.label1.ForeColor = System.Drawing.Color.DodgerBlue;
  40. this.label1.Location = new System.Drawing.Point(10, 7);
  41. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(341, 28);
  44. this.label1.TabIndex = 0;
  45. this.label1.Tag = "themeable";
  46. this.label1.Text = "Enter your desired download folder:";
  47. //
  48. // label2
  49. //
  50. this.label2.AutoSize = true;
  51. this.label2.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  52. this.label2.ForeColor = System.Drawing.Color.Silver;
  53. this.label2.Location = new System.Drawing.Point(10, 67);
  54. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  55. this.label2.Name = "label2";
  56. this.label2.Size = new System.Drawing.Size(110, 21);
  57. this.label2.TabIndex = 34;
  58. this.label2.Tag = "";
  59. this.label2.Text = "(Example: X:\\)";
  60. //
  61. // textBox1
  62. //
  63. this.textBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  64. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  65. this.textBox1.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  66. this.textBox1.ForeColor = System.Drawing.Color.White;
  67. this.textBox1.Location = new System.Drawing.Point(14, 38);
  68. this.textBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  69. this.textBox1.Name = "textBox1";
  70. this.textBox1.Size = new System.Drawing.Size(378, 29);
  71. this.textBox1.TabIndex = 0;
  72. //
  73. // cancel
  74. //
  75. this.cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  76. this.cancel.BackColor = System.Drawing.Color.DodgerBlue;
  77. this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  78. this.cancel.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  79. this.cancel.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  80. this.cancel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  81. this.cancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  82. this.cancel.ForeColor = System.Drawing.Color.White;
  83. this.cancel.Location = new System.Drawing.Point(245, 108);
  84. this.cancel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  85. this.cancel.Name = "cancel";
  86. this.cancel.Size = new System.Drawing.Size(71, 31);
  87. this.cancel.TabIndex = 36;
  88. this.cancel.Tag = "themeable";
  89. this.cancel.Text = "Cancel";
  90. this.cancel.UseVisualStyleBackColor = false;
  91. this.cancel.Click += new System.EventHandler(this.cancel_Click);
  92. //
  93. // ok
  94. //
  95. this.ok.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  96. this.ok.BackColor = System.Drawing.Color.DodgerBlue;
  97. this.ok.FlatAppearance.BorderColor = System.Drawing.Color.DodgerBlue;
  98. this.ok.FlatAppearance.MouseDownBackColor = System.Drawing.Color.RoyalBlue;
  99. this.ok.FlatAppearance.MouseOverBackColor = System.Drawing.Color.RoyalBlue;
  100. this.ok.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  101. this.ok.ForeColor = System.Drawing.Color.White;
  102. this.ok.Location = new System.Drawing.Point(321, 108);
  103. this.ok.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  104. this.ok.Name = "ok";
  105. this.ok.Size = new System.Drawing.Size(71, 31);
  106. this.ok.TabIndex = 35;
  107. this.ok.Tag = "themeable";
  108. this.ok.Text = "OK";
  109. this.ok.UseVisualStyleBackColor = false;
  110. this.ok.Click += new System.EventHandler(this.ok_Click);
  111. //
  112. // EdgeForm
  113. //
  114. this.AcceptButton = this.ok;
  115. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  116. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  117. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
  118. this.CancelButton = this.cancel;
  119. this.ClientSize = new System.Drawing.Size(402, 149);
  120. this.Controls.Add(this.cancel);
  121. this.Controls.Add(this.ok);
  122. this.Controls.Add(this.textBox1);
  123. this.Controls.Add(this.label2);
  124. this.Controls.Add(this.label1);
  125. this.DoubleBuffered = true;
  126. this.Font = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  127. this.ForeColor = System.Drawing.Color.White;
  128. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  129. this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  130. this.MaximizeBox = false;
  131. this.MinimizeBox = false;
  132. this.Name = "EdgeForm";
  133. this.ShowIcon = false;
  134. this.ShowInTaskbar = false;
  135. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  136. this.Load += new System.EventHandler(this.EdgeFolder_Load);
  137. this.ResumeLayout(false);
  138. this.PerformLayout();
  139. }
  140. #endregion
  141. private System.Windows.Forms.Label label1;
  142. private System.Windows.Forms.TextBox textBox1;
  143. private System.Windows.Forms.Label label2;
  144. private System.Windows.Forms.Button cancel;
  145. private System.Windows.Forms.Button ok;
  146. }
  147. }