ProgressBarOnResize Method

Raises the Resize event.

Definition

Namespace: BeeMobile.ProgressBar
Assembly: BeeMobile.ProgressBar.NET48 (in BeeMobile.ProgressBar.NET48.dll) Version: 4.8.1.0
C#
protected override void OnResize(
	EventArgs e
)

Parameters

e  EventArgs
An EventArgs that contains the event data.

Remarks

Raising an event invokes the event handler through a delegate. The OnResize method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

See Also