[]
By default, the C1MediaPlayer control will automatically run through its item list only once. But if you'd prefer to have the player continuously loop through its items, you can set the C1MediaPlayer.IsLooping property to True.
At Design Time
To turn on looping, complete the following steps:
Click the C1MediaPlayer control once to select it.
In the Properties window(or Properties panel in Blend), locate the IsLooping check box and select it.
In XAML
To turn on looping, add IsLooping="True" to the <c1mediaplayer:C1MediaPlayer> tag so that the markup resembles the following:
<c1mediaplayer:C1MediaPlayer Name="C1MediaPlayer1" IsLooping="True">
In Code
To turn on looping, complete the following steps:
Open the Window1.xaml.cs page.
Add x:Name="C1MediaPlayer1" to the <c1ext:C1MediaPlayer> tag so that the control will have a unique identifier for you to call in code.
Place the following code beneath the InitializeComponent() method:
C1MediaPlayer1.IsLooping = True
c1MediaPlayer1.IsLooping = true;
Run the program.