- May 14, 2008
- 3,558
- 434
- Home Country
- Germany
please ignore
So this is help request out to the devs: How do i get the overall remaining playtime???
foreach (GUIListItem item in itemlist)
{
MusicTag tag = item.MusicTag as MusicTag;
if (tag != null)
{
if (tag.Duration > 0)
{
totalPlayingTime = totalPlayingTime.Add(new TimeSpan(0, 0, tag.Duration));
}
}
}