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.7 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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.DecimalPlaces = 2;
  38. this.factorNum.Dock = System.Windows.Forms.DockStyle.Right;
  39. this.factorNum.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  40. this.factorNum.Increment = new decimal(new int[] {
  41. 1,
  42. 0,
  43. 0,
  44. 131072});
  45. this.factorNum.Location = new System.Drawing.Point(236, 0);
  46. this.factorNum.Minimum = new decimal(new int[] {
  47. 1000,
  48. 0,
  49. 0,
  50. -2147418112});
  51. this.factorNum.Name = "factorNum";
  52. this.factorNum.Size = new System.Drawing.Size(86, 34);
  53. this.factorNum.TabIndex = 6;
  54. //
  55. // multiply
  56. //
  57. this.multiply.AutoSize = true;
  58. this.multiply.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  59. this.multiply.Location = new System.Drawing.Point(202, 2);
  60. this.multiply.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  61. this.multiply.Name = "multiply";
  62. this.multiply.Size = new System.Drawing.Size(26, 28);
  63. this.multiply.TabIndex = 2;
  64. this.multiply.Text = "×";
  65. //
  66. // plus
  67. //
  68. this.plus.AutoSize = true;
  69. this.plus.Font = new System.Drawing.Font("Segoe UI", 10F);
  70. this.plus.Location = new System.Drawing.Point(5, 2);
  71. this.plus.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  72. this.plus.Name = "plus";
  73. this.plus.Size = new System.Drawing.Size(26, 28);
  74. this.plus.TabIndex = 3;
  75. this.plus.Text = "+";
  76. //
  77. // valueLabel
  78. //
  79. this.valueLabel.AutoSize = true;
  80. this.valueLabel.Font = new System.Drawing.Font("Microsoft YaHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  81. this.valueLabel.Location = new System.Drawing.Point(39, 6);
  82. this.valueLabel.Name = "valueLabel";
  83. this.valueLabel.Size = new System.Drawing.Size(118, 24);
  84. this.valueLabel.TabIndex = 7;
  85. this.valueLabel.Text = "PackageLoss";
  86. //
  87. // CalculationControl
  88. //
  89. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
  90. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  91. this.Controls.Add(this.valueLabel);
  92. this.Controls.Add(this.factorNum);
  93. this.Controls.Add(this.multiply);
  94. this.Controls.Add(this.plus);
  95. this.Margin = new System.Windows.Forms.Padding(0);
  96. this.Name = "CalculationControl";
  97. this.Size = new System.Drawing.Size(322, 34);
  98. ((System.ComponentModel.ISupportInitialize)(this.factorNum)).EndInit();
  99. this.ResumeLayout(false);
  100. this.PerformLayout();
  101. }
  102. #endregion
  103. private System.Windows.Forms.NumericUpDown factorNum;
  104. private System.Windows.Forms.Label multiply;
  105. private System.Windows.Forms.Label plus;
  106. private System.Windows.Forms.Label valueLabel;
  107. }
  108. }