C#如何获取windows的当前播放

C# How to access the current playback of windows

在Windows10有一个音乐专题(下图):

所以我的问题是:如何使用 C# 访问此信息以及我需要哪些库?

感谢您的帮助

请原谅我的无知,但如果我没记错的话,这个小部件是 Spotify 的弹出窗口,不是吗?在这种情况下,您只需检查 spotify 进程的 MainWindowsTitle

        var spotify = Process.GetProcessesByName("Spotify");
        foreach (var song in spotify)
        {
            Console.WriteLine(song.MainWindowTitle);
        }

        Console.ReadLine();

不要忘记使用 using System.Diagnostics;。你将不得不检查你是否没有得到任何歌曲。

我正在检查这个方法是否有效:)