6 references to ScrollBarAccessibleObject
System.Windows.Forms (2)
System\Windows\Forms\Printing\PrintPreviewControl.ScrollBarAccessibleObject.cs (1)
12public ScrollBarAccessibleObject(ScrollBar owner) : base(owner)
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
757=> new ScrollBarAccessibleObject(this);
System.Windows.Forms.Tests (4)
System\Windows\Forms\AccessibleObjects\HScrollBar.HScrollBarAccessibleObjectTests.cs (1)
19Assert.Throws<ArgumentNullException>(() => new ScrollBarAccessibleObject(null));
System\Windows\Forms\AccessibleObjects\ScrollBar.ScrollBarAccessibleObjectTests.cs (2)
16Assert.Throws<ArgumentNullException>(() => new ScrollBar.ScrollBarAccessibleObject(null)); 70var scrollBarAccessibleObject = new ScrollBar.ScrollBarAccessibleObject(scrollBar);
System\Windows\Forms\AccessibleObjects\VScrollBar.VScrollBarAccessibleObjectTests.cs (1)
18Assert.Throws<ArgumentNullException>(() => new ScrollBarAccessibleObject(null));