This event is generated when the video ends.

[Visual Basic]Public Event End As System.EventHandler
[C#]public event System.EventHandler End;

Event Data

Event Handler receives arguments of type System.EventHandler

Explanation

The End event is generated when the video ends. When the Start method is executed and the video has been playing and then stops playing without the Stop method being executed, then this event is generated.

Example

[Visual Basic.NET]
Private Sub Play1_End(ByVal sender As Object, ByVal e As System.EventArgs) Handles Play1.End
     MessageBox.Show("The End")
End Sub

[Visual C#.NET]
private void play1_End(object sender, System.EventArgs e)
{
     MessageBox.Show("The End");
}

See Also

Play Members | Newtone.ImageKit.Wpf.WebCamera.Play

 

The ImageKit WPF is created by Newtone Corporation