C1MediaPlayer Task-Based Help > Showing the Chapter List on Page Load |
By default, the C1MediaPlayer control doesn't show the chapter list when it's loaded; users will have to open the list themselves by clicking the Chapter List button. However, you can make the chapter list show upon page load by setting the C1MediaPlayer.IsChapterListVisible property to True.
At Design Time
To open the chapter list on page load, complete the following steps:
In XAML
To open the chapter list on page load, complete the following steps:
<c1mediaplayer:C1MediaPlayer Name="C1MediaPlayer1" IsChapterListVisible="True">
In Code
To open the chapter list on page load, complete the following steps:
Visual Basic |
Copy Code
|
---|---|
C1MediaPlayer1.IsChapterListVisible = True
|
C# |
Copy Code
|
---|---|
c1MediaPlayer1.IsChapterListVisible = true;
|