作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在project.shared中的 Assets 中添加了声音,并在XAML页面中添加了MediaElement
。
我想在点击图像时播放声音。
这是我的代码,但是没有用。
</Grid>
<GridView VerticalAlignment="Bottom" Margin="-10,-10,10,10" Height="260" Grid.RowSpan="2">
<StackPanel Orientation="Vertical">
<Image Source="/Assets/Animals/cat.png" Height="200" Width="200" HorizontalAlignment="Center" Tapped="Image_Tapped"/>
<TextBlock Text="Cat" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="30"/>
</StackPanel>
</GridView>
<MediaElement Name="AudioPlayer" HorizontalAlignment="Left" Height="100" Margin="297,290,0,0" Grid.Row="1" VerticalAlignment="Top" Width="100" Visibility="Collapsed" Volume="1"/>
</Grid>
private void Image_Tapped(object sender, TappedRoutedEventArgs e)
{
cat.play();
}
最佳答案
首先,您需要定义源文件。您甚至可以通过添加以下内容,将其添加到MediaElement的XAML属性中
Source =“mediafile.mp3”
到线。
其次,您的MediaElement的名称为“AudioPlayer”,因此您应该从事件处理程序中调用
AudioPlayer.Play();
而不是cat.play();
关于c# - 如何在Windows Universal应用程序中播放Assets中的声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30001374/
我是一名优秀的程序员,十分优秀!