gpt4 book ai didi

c# - 更改源后 MediaElement 播放声音 2 次

转载 作者:太空宇宙 更新时间:2023-11-03 10:44:31 25 4
gpt4 key购买 nike

我正在开发 Windows Phone 8.1 应用程序,但遇到无法解决的问题。我在 Internet 上查找了我能找到的所有代码,几个小时以来我一直试图找出问题的根源,但没有成功。让我们来看一个简单的代码:

xaml:

<Page
x:Class="App8.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App8"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

<Grid>
<MediaElement x:Name="MediaElement1" AutoPlay="False" Visibility="Collapsed"/>
<Button Content="Button" HorizontalAlignment="Left" Margin="154,44,0,0" VerticalAlignment="Top"
Click="ButtonBase_OnClick"/>
</Grid>
</Page>

CS:

using System;
using System.Diagnostics;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;

namespace App8
{
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();

this.NavigationCacheMode = NavigationCacheMode.Disabled;

MediaElement1.MediaOpened += MediaElement1_MediaOpened;
}

void MediaElement1_MediaOpened(object sender, RoutedEventArgs e)
{
MediaElement1.Play();
}


private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
MediaElement1.Source = new Uri("ms-appx:///Assets/Audio/SampleSets/First/clap_01.mp3");
}
}
}

现在,当我点击按钮时,声音会不时播放两次。有时是在第一次点击之后,有时是在点击 10 次之后。我只想强调,这只是简单的代码来说明我的问题所在,我真的不想一次又一次地将 MediaElement 的来源更改为相同的内容。

最佳答案

根据我的尝试,问题似乎(有时)在模拟器上运行时发生。

当我在设备上对其进行测试时,我无法重现相同的行为。

关于c# - 更改源后 MediaElement 播放声音 2 次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23975869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com