Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不断收到“未设置对象实例的对象引用”,我完全不知道为什么!
MediaElement1.Source = New URI(trackstream(0), UriKind.Absolute)
如果我将鼠标悬停以检查一切似乎都很好,则该变量位置包含指向 mp3 的直接链接,它甚至会说如果我将鼠标悬停在它上,源已设置为该 URL,但随后我收到此错误。
我只是想将 url 设置为我之前从文本文件下载的列表中的第一个,然后放入该数组。我尝试更改 urlkind 并省略它。
这有效:
public MainWindow() { string[] trackstream = new string[] { @"C:\Users\Public\Music\Sample Music\sound.wma" }; InitializeComponent(); media.Source = new Uri(trackstream[0], UriKind.Absolute); }