3 instantiations of SplitterEventArgs
System.Windows.Forms (3)
System\Windows\Forms\Controls\Splitter\Splitter.cs (2)
419OnSplitterMoved(new SplitterEventArgs(Left, Top, (Left + bounds.Width / 2), (Top + bounds.Height / 2))); 828OnSplitterMoving(new SplitterEventArgs(x, y, xSplit, ySplit));
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
718OnSplitterMoved(new SplitterEventArgs(SplitterRectangle.X + SplitterRectangle.Width / 2, SplitterRectangle.Y + SplitterRectangle.Height / 2, SplitterRectangle.X, SplitterRectangle.Y));
7 references to SplitterEventArgs
System.Windows.Forms (5)
System\Windows\Forms\Controls\Splitter\Splitter.cs (2)
843protected virtual void OnSplitterMoving(SplitterEventArgs sevent) 858protected virtual void OnSplitterMoved(SplitterEventArgs sevent)
System\Windows\Forms\Controls\Splitter\SplitterEventArgs.cs (1)
12/// Initializes an instance of the <see cref="SplitterEventArgs"/> class with the specified coordinates
System\Windows\Forms\Controls\Splitter\SplitterEventHandler.cs (1)
9public delegate void SplitterEventHandler(object? sender, SplitterEventArgs e);
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
1235public void OnSplitterMoved(SplitterEventArgs e)
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\DesignerFrame.cs (1)
134private void OnSplitterMoved(object? sender, SplitterEventArgs e)
System\Windows\Forms\Design\SplitContainerDesigner.cs (1)
302private void OnSplitterMoved(object? sender, SplitterEventArgs e)