Visual Studio WPF MediaElement 不显示视频
Visual Studio WPF MediaElement not Displaying the video
这是我第一次在这里提问。所以我正在学习教程 (https://youtu.be/-zM486rVopk),然后在 MediaElement 部分我很难理解问题的根源。
<MediaElement Grid.Column="4" Grid.Row="1" Grid.RowSpan="6"
Source="C:\Users\Name\Documents\Visual Studio Workspace\WPFDemo\Resources\Crying Meme.mp4" />
截图:
Solution Explorer
Properties
所以我尝试将视频文件拖到表单中,但弹出此错误消息...
错误:Error Pop up message
我不知道这是什么意思,我对这些东西很陌生,希望你能理解。提前致谢!
看来是路径问题,试试这个:
<MediaElement Grid.Column="4" Grid.Row="1" Grid.RowSpan="6" Source="/Resources/Crying Meme.mp4" />
这是我第一次在这里提问。所以我正在学习教程 (https://youtu.be/-zM486rVopk),然后在 MediaElement 部分我很难理解问题的根源。
<MediaElement Grid.Column="4" Grid.Row="1" Grid.RowSpan="6"
Source="C:\Users\Name\Documents\Visual Studio Workspace\WPFDemo\Resources\Crying Meme.mp4" />
截图: Solution Explorer Properties
所以我尝试将视频文件拖到表单中,但弹出此错误消息...
错误:Error Pop up message
我不知道这是什么意思,我对这些东西很陌生,希望你能理解。提前致谢!
看来是路径问题,试试这个:
<MediaElement Grid.Column="4" Grid.Row="1" Grid.RowSpan="6" Source="/Resources/Crying Meme.mp4" />