Click here to Skip to main content
15,886,724 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
After buffering completed Label text "Buffering" should changed to "Playing" Please help


C#
private void axVLC_Buffering(object sender, AxAXVLC.DVLCEvents_MediaPlayerBufferingEvent e)
{

/* Please HELP after complete Buffering 
text, "Playing" should show. 
But it's not showing HELP. */
StatusLabel.Text = "Buffering";

}

private void axVLC_Paused(object sender, EventArgs e)
{
StatusLabel.Text = "Paused";
}

private void axVLC_Playing(object sender, EventArgs e)
{
StatusLabel.Text = "Playing";
}

private void axVLC_Stopped(object sender, EventArgs e)
{
StatusLabel.Text = "Stopped";
}

private void axVLC_play(object sender, EventArgs e)
{
StatusLabel.Text = "Playing";
}
Posted
Updated 27-Aug-14 11:12am
v2
Comments
kbrandwijk 31-Aug-14 14:42pm    
From what I have read, all events starting with MediaPlayer... are currently not firing, only playing, paused and stopped.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900