gpt4 book ai didi

wpf - 如何在XAML中播放系统声音?

转载 作者:行者123 更新时间:2023-12-04 13:46:22 26 4
gpt4 key购买 nike

这是一个简单的问题,令我惊讶的是,我找不到以下问题的答案:如何在XAML中播放系统声音?

我将事件触发器附加到按钮上。触发器显示一条消息,我希望它播放Windows通知声音。我找到了一些有关如何播放声音文件的引用,但没有找到有关如何调用系统声音的引用。

谢谢你的帮助!

最佳答案

SystemSounds 类提供一些系统声音,它们具有Play()方法。要在XAML中使用此功能,您要么不得不求助于一些怪异的技巧,实现大量的自定义逻辑,要么使用Blend Interactivity定义自己的TriggerAction,该触发器可以使用SystemSound进行播放。

交互方法:

public class SystemSoundPlayerAction : System.Windows.Interactivity.TriggerAction<Button>
{
public static readonly DependencyProperty SystemSoundProperty =
DependencyProperty.Register("SystemSound", typeof(SystemSound), typeof(SystemSoundPlayerAction), new UIPropertyMetadata(null));
public SystemSound SystemSound
{
get { return (SystemSound)GetValue(SystemSoundProperty); }
set { SetValue(SystemSoundProperty, value); }
}

protected override void Invoke(object parameter)
{
if (SystemSound == null) throw new Exception("No system sound was specified");
SystemSound.Play();
}
}
<Window 
xmlns:sysmedia="clr-namespace:System.Media;assembly=System"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity">
...
<Button Content="Test2">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<i:EventTrigger.Actions>
<local:SystemSoundPlayerAction SystemSound="{x:Static sysmedia:SystemSounds.Beep}"/>
</i:EventTrigger.Actions>
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>

(我不知道 SystemSounds.Beep是否是您正在寻找的那个。)

大卫·威纳曼(David Veeneman)的注释:

对于其他研究此问题的人,答案中提到的Blend Interactivity需要对System.Windows.Interactivity.dll的引用,该文件可在 C:\Program Files (x86)\Microsoft SDKs\Expression\Blend\.NETFramework\v4.0\Libraries\中找到

关于wpf - 如何在XAML中播放系统声音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5671461/

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