My Code for a button push to play a video is:
V1
Code: Select all
private void button2_Click(object sender, EventArgs e)
{
axVLCPlugin1.addTarget("C:\\apple.avi", null, AXVLC.VLCPlaylistMode.VLCPlayListReplaceAndGo, 0);
axVLCPlugin1.play();
}
Code: Select all
private void button3_Click(object sender, EventArgs e)
{
axVLCPlugin21.playlist.add(@"c:\apple.avi", "apple"," " );
axVLCPlugin21.playlist.play();
}