NumberParamControl.Designer.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. 
  2. namespace SmartCoalApplication.PluginAssemblys
  3. {
  4. partial class NumberParamControl
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region 组件设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.sliderR = new System.Windows.Forms.TrackBar();
  30. this.numericUpDownR = new PdnNumericUpDown();
  31. ((System.ComponentModel.ISupportInitialize)(this.sliderR)).BeginInit();
  32. ((System.ComponentModel.ISupportInitialize)(this.numericUpDownR)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // sliderR
  36. //
  37. this.sliderR.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  38. | System.Windows.Forms.AnchorStyles.Right)));
  39. this.sliderR.Location = new System.Drawing.Point(0, 0);
  40. this.sliderR.Maximum = 255;
  41. this.sliderR.Name = "sliderR";
  42. this.sliderR.Size = new System.Drawing.Size(164, 45);
  43. this.sliderR.TabIndex = 22;
  44. this.sliderR.TickStyle = System.Windows.Forms.TickStyle.None;
  45. this.sliderR.Value = 127;
  46. this.sliderR.Scroll += new System.EventHandler(this.sliderR_Scroll);
  47. //
  48. // numericUpDownR
  49. //
  50. this.numericUpDownR.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  51. this.numericUpDownR.Location = new System.Drawing.Point(170, 0);
  52. this.numericUpDownR.Maximum = new decimal(new int[] {
  53. 255,
  54. 0,
  55. 0,
  56. 0});
  57. this.numericUpDownR.Name = "numericUpDownR";
  58. this.numericUpDownR.Size = new System.Drawing.Size(70, 21);
  59. this.numericUpDownR.TabIndex = 20;
  60. this.numericUpDownR.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  61. this.numericUpDownR.Value = new decimal(new int[] {
  62. 127,
  63. 0,
  64. 0,
  65. 0});
  66. this.numericUpDownR.ValueChanged += new System.EventHandler(this.numericUpDownR_ValueChanged);
  67. //
  68. // NumberParamControl
  69. //
  70. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  71. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  72. this.Controls.Add(this.sliderR);
  73. this.Controls.Add(this.numericUpDownR);
  74. this.Name = "NumberParamControl";
  75. this.Size = new System.Drawing.Size(240, 45);
  76. ((System.ComponentModel.ISupportInitialize)(this.sliderR)).EndInit();
  77. ((System.ComponentModel.ISupportInitialize)(this.numericUpDownR)).EndInit();
  78. this.ResumeLayout(false);
  79. this.PerformLayout();
  80. }
  81. #endregion
  82. private System.Windows.Forms.TrackBar sliderR;
  83. private PdnNumericUpDown numericUpDownR;
  84. }
  85. }