Add ability to play videos from library#1
Add ability to play videos from library#1itsWindows11 wants to merge 3 commits intohuynhsontung:mainfrom
Conversation
| { | ||
| SetMinWindowSize(); | ||
| rootFrame.Navigate(typeof(PlayerPage)); | ||
| rootFrame.Navigate(typeof(MainPage)); |
There was a problem hiding this comment.
Due to the current LibVLC limitation, there can only be one instance of the media player element per LibVLC instance. This means the player will break if you navigate away from the PlayerPage.
You can see there is an inline Frame in PlayerPage that loads the MainPage to circumvent this.
There was a problem hiding this comment.
Due to the current LibVLC limitation, there can only be one instance of the media player element per
LibVLCinstance. This means the player will break if you navigate away from thePlayerPage.You can see there is an inline Frame in
PlayerPagethat loads theMainPageto circumvent this.
I think you can init the player in the app initialization code and then that would fix it. You could revert that if you want for now.
|
Rebased and merged in 7a61e37 |
No description provided.