123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- namespace PaintDotNet.CustomControl
- {
- partial class NumberParamControl
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region 组件设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.sliderR = new System.Windows.Forms.TrackBar();
- this.numericUpDownR = new PaintDotNet.PdnNumericUpDown();
- ((System.ComponentModel.ISupportInitialize)(this.sliderR)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDownR)).BeginInit();
- this.SuspendLayout();
- //
- // sliderR
- //
- this.sliderR.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.sliderR.Location = new System.Drawing.Point(0, 0);
- this.sliderR.Maximum = 255;
- this.sliderR.Name = "sliderR";
- this.sliderR.Size = new System.Drawing.Size(164, 45);
- this.sliderR.TabIndex = 22;
- this.sliderR.TickStyle = System.Windows.Forms.TickStyle.None;
- this.sliderR.Value = 127;
- this.sliderR.Scroll += new System.EventHandler(this.sliderR_Scroll);
- //
- // numericUpDownR
- //
- this.numericUpDownR.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.numericUpDownR.Location = new System.Drawing.Point(170, 0);
- this.numericUpDownR.Maximum = new decimal(new int[] {
- 255,
- 0,
- 0,
- 0});
- this.numericUpDownR.Name = "numericUpDownR";
- this.numericUpDownR.Size = new System.Drawing.Size(70, 21);
- this.numericUpDownR.TabIndex = 20;
- this.numericUpDownR.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
- this.numericUpDownR.Value = new decimal(new int[] {
- 127,
- 0,
- 0,
- 0});
- this.numericUpDownR.ValueChanged += new System.EventHandler(this.numericUpDownR_ValueChanged);
- //
- // NumberParamControl
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.sliderR);
- this.Controls.Add(this.numericUpDownR);
- this.Name = "NumberParamControl";
- this.Size = new System.Drawing.Size(240, 45);
- ((System.ComponentModel.ISupportInitialize)(this.sliderR)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDownR)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.TrackBar sliderR;
- private PdnNumericUpDown numericUpDownR;
- }
- }
|