5 instantiations of SplitterCancelEventArgs
System.Windows.Forms (2)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
991SplitterCancelEventArgs se = new(Left + SplitterRectangle.X + SplitterRectangle.Width / 2, Top + SplitterRectangle.Y + SplitterRectangle.Height / 2, xSplit, ySplit); 1104SplitterCancelEventArgs se = new(x, y, xSplit, ySplit);
System.Windows.Forms.Tests (3)
System\Windows\Forms\SplitterCancelEventArgsTests.cs (3)
15SplitterCancelEventArgs e = new(mouseCursorX, mouseCursorY, splitX, splitY); 29SplitterCancelEventArgs e = new(1, 2, 3, 4) 42SplitterCancelEventArgs e = new(1, 2, 3, 4)
9 references to SplitterCancelEventArgs
System.Windows.Forms (5)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (3)
991SplitterCancelEventArgs se = new(Left + SplitterRectangle.X + SplitterRectangle.Width / 2, Top + SplitterRectangle.Y + SplitterRectangle.Height / 2, xSplit, ySplit); 1104SplitterCancelEventArgs se = new(x, y, xSplit, ySplit); 1225public void OnSplitterMoving(SplitterCancelEventArgs e)
System\Windows\Forms\Layout\Containers\SplitterCancelEventArgs.cs (1)
14/// Initializes an instance of the <see cref="SplitterCancelEventArgs"/> class with the specified coordinates
System\Windows\Forms\Layout\Containers\SplitterCancelEventHandler.cs (1)
9public delegate void SplitterCancelEventHandler(object? sender, SplitterCancelEventArgs e);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\SplitContainerDesigner.cs (1)
343private void OnSplitterMoving(object? sender, SplitterCancelEventArgs e)
System.Windows.Forms.Tests (3)
System\Windows\Forms\SplitterCancelEventArgsTests.cs (3)
15SplitterCancelEventArgs e = new(mouseCursorX, mouseCursorY, splitX, splitY); 29SplitterCancelEventArgs e = new(1, 2, 3, 4) 42SplitterCancelEventArgs e = new(1, 2, 3, 4)