2 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);
6 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)