3 instantiations of SplitterEventArgs
System.Windows.Forms (3)
winforms\Managed\System\WinForms\SplitContainer.cs (1)
858
OnSplitterMoved(new
SplitterEventArgs
(SplitterRectangle.X + SplitterRectangle.Width/2, SplitterRectangle.Y + SplitterRectangle.Height/2, SplitterRectangle.X, SplitterRectangle.Y));
winforms\Managed\System\WinForms\Splitter.cs (2)
469
OnSplitterMoved(new
SplitterEventArgs
(Left, Top, (Left + bounds.Width / 2), (Top + bounds.Height / 2)));
896
OnSplitterMoving(new
SplitterEventArgs
(x, y, xSplit, ySplit));
5 references to SplitterEventArgs
System.Windows.Forms (5)
winforms\Managed\System\WinForms\SplitContainer.cs (1)
1406
public void OnSplitterMoved(
SplitterEventArgs
e) {
winforms\Managed\System\WinForms\Splitter.cs (2)
922
protected virtual void OnSplitterMoving(
SplitterEventArgs
sevent) {
936
protected virtual void OnSplitterMoved(
SplitterEventArgs
sevent) {
winforms\Managed\System\WinForms\SplitterEvent.cs (1)
35
/// Initializes an instance of the <see cref='System.Windows.Forms.
SplitterEventArgs
'/> class with the specified coordinates
winforms\Managed\System\WinForms\SplitterEventHandler.cs (1)
20
public delegate void SplitterEventHandler(object sender,
SplitterEventArgs
e);