7 references to SplitterEventArgs
System.Windows.Forms (3)
System\Windows\Forms\Controls\Splitter\Splitter.cs (2)
420
OnSplitterMoved(new
SplitterEventArgs
(Left, Top, (Left + bounds.Width / 2), (Top + bounds.Height / 2)));
829
OnSplitterMoving(new
SplitterEventArgs
(x, y, xSplit, ySplit));
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
718
OnSplitterMoved(new
SplitterEventArgs
(SplitterRectangle.X + SplitterRectangle.Width / 2, SplitterRectangle.Y + SplitterRectangle.Height / 2, SplitterRectangle.X, SplitterRectangle.Y));
System.Windows.Forms.Tests (4)
System\Windows\Forms\SplitterEventArgsTests.cs (3)
15
SplitterEventArgs e =
new
(x, y, splitX, splitY);
28
SplitterEventArgs e =
new
(1, 2, 3, 4)
41
SplitterEventArgs e =
new
(1, 2, 3, 4)
System\Windows\Forms\SplitterTests.cs (1)
2245
yield return new object[] { new
SplitterEventArgs
(0, 0, 0, 0) };