HakuTeam / SoundWizard

Media Player - a C# OOP Advanced teamwork
MIT License
1 stars 1 forks source link

Playlist: Forward, Rewind buttons - to loop songs #11

Closed zluzunov closed 7 years ago

zluzunov commented 7 years ago

When forward click reaches the end/beginning of the list to jump to the other side of the list;

dhtveso commented 7 years ago

MediaElement.Position += TimeSpan.FromSeconds(10); if (MediaElement.Position >= MediaElement.NaturalDuration.TimeSpan) { MediaElement.Position -= TimeSpan.FromMilliseconds(100); }

code for forward

zluzunov commented 7 years ago

See RepeatButton Control @dhtveso

by @AlisaTerzieva

dhtveso commented 7 years ago

Ready now repeat playlist. 0b14a90