按照我之前的问题
当我在 iTunes 库中获取播放列表时,我得到一些似乎是 iTunes 的默认播放列表的条目
这是我的代码:
App = new iTunesAppClass();
IITSourceCollection sources = App.Sources;
foreach (IITSource src in sources)
{
if (src.Name == "Library")
{
IITPlaylistCollection pls = src.Playlists;
foreach (IITPlaylist pl in pls)
{
// add pl.Name to a List<string> and them show them on TreeView
}
}
}
这是结果:
您会看到我创建了一个名为“音乐”的播放列表。还有一个名为“音乐”的默认条目。如何区分这两个播放列表?iTunesLib 中是否有任何属性表明哪个是默认的,哪个是我创建的?