You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

CalculationControl.Designer.cs 4.3 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. namespace Shadowsocks.View
  2. {
  3. partial class CalculationControl
  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 Component 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.factorNum = new System.Windows.Forms.NumericUpDown();
  29. this.multiply = new System.Windows.Forms.Label();
  30. this.plus = new System.Windows.Forms.Label();
  31. this.valueLabel = new System.Windows.Forms.Label();
  32. ((System.ComponentModel.ISupportInitialize)(this.factorNum)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // factorNum
  36. //
  37. this.factorNum.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  38. this.factorNum.Increment = new decimal(new int[] {
  39. 1,
  40. 0,
  41. 0,
  42. 131072});
  43. this.factorNum.Location = new System.Drawing.Point(320, 7);
  44. this.factorNum.Minimum = new decimal(new int[] {
  45. 1000,
  46. 0,
  47. 0,
  48. -2147418112});
  49. this.factorNum.Name = "factorNum";
  50. this.factorNum.Size = new System.Drawing.Size(86, 34);
  51. this.factorNum.TabIndex = 6;
  52. //
  53. // multiply
  54. //
  55. this.multiply.AutoSize = true;
  56. this.multiply.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  57. this.multiply.Location = new System.Drawing.Point(286, 9);
  58. this.multiply.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  59. this.multiply.Name = "multiply";
  60. this.multiply.Size = new System.Drawing.Size(26, 28);
  61. this.multiply.TabIndex = 2;
  62. this.multiply.Text = "×";
  63. //
  64. // plus
  65. //
  66. this.plus.AutoSize = true;
  67. this.plus.Font = new System.Drawing.Font("Segoe UI", 10F);
  68. this.plus.Location = new System.Drawing.Point(5, 9);
  69. this.plus.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  70. this.plus.Name = "plus";
  71. this.plus.Size = new System.Drawing.Size(26, 28);
  72. this.plus.TabIndex = 3;
  73. this.plus.Text = "+";
  74. //
  75. // valueLabel
  76. //
  77. this.valueLabel.AutoSize = true;
  78. this.valueLabel.Location = new System.Drawing.Point(39, 17);
  79. this.valueLabel.Name = "valueLabel";
  80. this.valueLabel.Size = new System.Drawing.Size(0, 18);
  81. this.valueLabel.TabIndex = 7;
  82. //
  83. // CalculationControl
  84. //
  85. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  86. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  87. this.Controls.Add(this.valueLabel);
  88. this.Controls.Add(this.factorNum);
  89. this.Controls.Add(this.multiply);
  90. this.Controls.Add(this.plus);
  91. this.Name = "CalculationControl";
  92. this.Size = new System.Drawing.Size(425, 46);
  93. ((System.ComponentModel.ISupportInitialize)(this.factorNum)).EndInit();
  94. this.ResumeLayout(false);
  95. this.PerformLayout();
  96. }
  97. #endregion
  98. private System.Windows.Forms.NumericUpDown factorNum;
  99. private System.Windows.Forms.Label multiply;
  100. private System.Windows.Forms.Label plus;
  101. private System.Windows.Forms.Label valueLabel;
  102. }
  103. }