1 write to hScrollBar
WinFormsControlsTest (1)
ScrollBars.Designer.cs (1)
36this.hScrollBar = new System.Windows.Forms.HScrollBar();
10 references to hScrollBar
WinFormsControlsTest (10)
ScrollBars.cs (4)
17hScrollBar.Maximum = Decimal.ToInt32(numericMaximum.Value); 25hScrollBar.Minimum = Decimal.ToInt32(numericMinimum.Value); 37lblHValue.Text = $"Value: {hScrollBar.Value}"; 43hScrollBar.RightToLeft = chbRightToLeft.Checked ? RightToLeft.Yes : RightToLeft.No;
ScrollBars.Designer.cs (6)
51this.hScrollBar.Location = new System.Drawing.Point(37, 63); 52this.hScrollBar.Name = "hScrollBar"; 53this.hScrollBar.Size = new System.Drawing.Size(200, 26); 54this.hScrollBar.TabIndex = 0; 55this.hScrollBar.Scroll += this.hScrollBar_Scroll; 146this.Controls.Add(this.hScrollBar);