NumberParamControl.Designer.cs 3.6 KB

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