uwp 中的音频开发
xml code
---------------------------------------------------
<UserControl x:Class="WinTest.HPControl.ReminderTimer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WinTest.HPControl"
mc:Ignorable="d" Height="158.036" Width="417.35">
<Grid>
<Border BorderBrush="White" Background="White" CornerRadius="20" >
<Grid Background="Transparent" Width="300">
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="80"></ColumnDefinition>
<ColumnDefinition Width="10"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Button Background="Transparent" Grid.Row="0" Grid.RowSpan="3" Click="Button_Click" >
<Image Source="/images/Alarm.png" ></Image>
</Button>
<TextBlock FontFamily="{StaticResource RegularFont}" Foreground="#333333" FontSize="18" Grid.Column="2" Grid.Row="0">时间</TextBlock>
<TextBlock FontFamily="{StaticResource LightFont}" FontWeight="Light" Foreground="#333333" FontSize="16" Grid.Column="2" Grid.Row="1">时间</TextBlock>
<TextBlock FontFamily="{StaticResource LightFont}" FontWeight="Light" Foreground="#666666" FontSize="10" Grid.Column="2" Grid.Row="2">时间</TextBlock>
<StackPanel Grid.Column="2" Grid.Row="3" Orientation="Horizontal">
<ToggleButton>toggle switch</ToggleButton>
<TextBlock Margin="20,0,0,0">提醒已生效</TextBlock>
<Button Click="ReminderTimer_replay">replay</Button>
</StackPanel>
</Grid>
</Border>
</Grid>
</UserControl>
C# code 后台
------------------------------------------------------------------
public partial class ReminderTimer : UserControl
{
private SoundPlayer player = null;
private MediaPlayer currentPlayer = null;
public ReminderTimer()
{
InitializeComponent();
this.Loaded += ReminderTimer_Loaded;
player = new SoundPlayer();
this.Unloaded += ReminderTimer_Unloaded;
}
private void ReminderTimer_Unloaded(object sender, RoutedEventArgs e)
{
currentPlayer.Stop();
currentPlayer.Close();
}
private void ReminderTimer_Loaded(object sender, RoutedEventArgs e)
{
initalplayer();
}
private void inital()
{
string str = System.IO.Directory.GetCurrentDirectory();
string path = Environment.CurrentDirectory;
string p = new Uri("ms-appx:///sound/AlarmSound.wma").ToString();
// string m= Application.StartupPath;
// player.SoundLocation = "/sound/美国往事.wav";//(将播放音乐放在应用程序Debug目录下)
// player.SoundLocation = "美国往事.wav";
int index = str.LastIndexOf(@"\bin");
if (index > 0)
{
str = str.Substring(0, index) + @"\sound\AlarmSound.wma";
}
player.SoundLocation = str;
player.Load();
//音乐播放
player.Play();
}
//ToastAudio Audio;
private void initalplayer()
{
currentPlayer = new MediaPlayer();
//Audio = new ToastAudio()
//{
// Loop = true,
// Src = new Uri("ms-appx:///HPControls/Assets/AlarmSound.wma")
//}
//"C:\Users\bruce\Desktop\UWP\WinTest\sound\AlarmSound.wma"
// Src = new Uri("ms-appx:///HPControls/Assets/AlarmSound.wma")
var path = @"C:\Users\bruce\Desktop\UWP\WinTest\sound\AlarmSound.wma";
//Uri audioUri = new Uri("ms-appx:///WinTest/sound/AlarmSound.wma");
Uri audioUri = new Uri(path);
currentPlayer.Open(audioUri);
currentPlayer.MediaEnded += CurrentPlayer_MediaEnded;
currentPlayer.Play();
}
private void CurrentPlayer_MediaEnded(object sender, EventArgs e)
{
var path = @"C:\Users\bruce\Desktop\UWP\WinTest\sound\AlarmSound.wma";
//Uri audioUri = new Uri("ms-appx:///WinTest/sound/AlarmSound.wma");
Uri audioUri = new Uri(path);
currentPlayer.Open(audioUri);
currentPlayer.Play();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
currentPlayer.Stop();
}
private void ReminderTimer_replay(object sender, RoutedEventArgs e)
{
currentPlayer.Play();
}
}
public partial class ReminderTimer : UserControl { private SoundPlayer player = null; private MediaPlayer currentPlayer = null; public ReminderTimer() { InitializeComponent(); this.Loaded += ReminderTimer_Loaded; player = new SoundPlayer(); this.Unloaded += ReminderTimer_Unloaded; }
private void ReminderTimer_Unloaded(object sender, RoutedEventArgs e) { currentPlayer.Stop(); currentPlayer.Close();
}
private void ReminderTimer_Loaded(object sender, RoutedEventArgs e) { initalplayer(); } private void inital() { string str = System.IO.Directory.GetCurrentDirectory(); string path = Environment.CurrentDirectory; string p = new Uri("ms-appx:///sound/AlarmSound.wma").ToString(); // string m= Application.StartupPath; // player.SoundLocation = "/sound/美国往事.wav";//(将播放音乐放在应用程序Debug目录下) // player.SoundLocation = "美国往事.wav"; int index = str.LastIndexOf(@"\bin"); if (index > 0) { str = str.Substring(0, index) + @"\sound\AlarmSound.wma"; } player.SoundLocation = str; player.Load(); //音乐播放 player.Play(); } //ToastAudio Audio; private void initalplayer() { currentPlayer = new MediaPlayer();
//Audio = new ToastAudio() //{ // Loop = true, // Src = new Uri("ms-appx:///HPControls/Assets/AlarmSound.wma") //}
//"C:\Users\bruce\Desktop\UWP\WinTest\sound\AlarmSound.wma" // Src = new Uri("ms-appx:///HPControls/Assets/AlarmSound.wma") var path = @"C:\Users\bruce\Desktop\UWP\WinTest\sound\AlarmSound.wma"; //Uri audioUri = new Uri("ms-appx:///WinTest/sound/AlarmSound.wma"); Uri audioUri = new Uri(path); currentPlayer.Open(audioUri); currentPlayer.MediaEnded += CurrentPlayer_MediaEnded; currentPlayer.Play(); }
private void CurrentPlayer_MediaEnded(object sender, EventArgs e) { var path = @"C:\Users\bruce\Desktop\UWP\WinTest\sound\AlarmSound.wma"; //Uri audioUri = new Uri("ms-appx:///WinTest/sound/AlarmSound.wma"); Uri audioUri = new Uri(path);
currentPlayer.Open(audioUri); currentPlayer.Play(); }
private void Button_Click(object sender, RoutedEventArgs e) {
currentPlayer.Stop();
}
private void ReminderTimer_replay(object sender, RoutedEventArgs e) { currentPlayer.Play(); } }
uwp 中的音频开发的更多相关文章
- 小强的HTML5移动开发之路(15)——HTML5中的音频
浏览器虽然发展很快,但是浏览器中的标准还是不完善,在HTML4+CSS2+JS的前段开发中让很多程序员头疼的就是浏览器的兼容性问题,音频播放也一样,直到现在,仍然不存在一项网页上播放视频和音频的标准. ...
- UWP开发-在UWP中使用sqlite
原文:UWP开发-在UWP中使用sqlite sqlite是一种轻量级的数据库,对于一些资源紧张又需要数据库的开发非常好用. SQLite 是一个开源的无服务器嵌入式数据库. 这些年来,它已作为面向存 ...
- UWP中实现自定义标题栏
UWP中实现自定义标题栏 0x00 起因 在UWP开发中,有时候我们希望实现自定义标题栏,例如在标题栏中加入搜索框.按钮之类的控件.搜了下资料居然在一个日文网站找到了一篇介绍这个主题的文章: http ...
- 淘宝UWP中的100个为什么
从淘宝UWP第一版发布到现在,已经有十个月了,期间收到了用户各种各样的反馈,感谢这些用户的反馈,指导我们不断的修正.完善应用.但是也有一部分需求或建议,由于资源或技术的限制,目前确实无法做到,只能对广 ...
- 揭秘Windows10 UWP中的httpclient接口[2]
阅读目录: 概述 如何选择 System.Net.Http Windows.Web.Http HTTP的常用功能 修改http头部 设置超时 使用身份验证凭据 使用客户端证书 cookie处理 概述 ...
- UWP中重用C/C++代码时踩过的一些坑
标题中提到的UWP,主要是指用C#来写UWP的主工程,开发过程中可能需要调用C/C++实现的库. 为什么需要调用C/C++的库呢,举个例子,开源库OpenSSL实现了许多加密算法,稳定快速,我们想在应 ...
- Android音频开发之——如何播放一帧音频
本文重点关注如何在Android平台上播放一帧音频数据.阅读本文之前,建议先读一下<Android音频开发(1):基础知识>,因为音频开发过程中,经常要涉及到这些基础知识,掌握了这些重要的 ...
- UWP中使用Composition API实现吸顶(1)
前几天需要在UWP中实现吸顶,就在网上找了一些文章: 吸顶大法 -- UWP中的工具栏吸顶的实现方式之一 在UWP中页面滑动导航栏置顶 发现前人的实现方式大多是控制ListViewBase的Heade ...
- UWP: 在 UWP 中使用 Entity Framework Core 操作 SQLite 数据库
在应用中使用 SQLite 数据库来存储数据是相当常见的.在 UWP 平台中要使用 SQLite,一般会使用 SQLite for Universal Windows Platform 和 SQLit ...
随机推荐
- Java 8 Function 函数接口
这篇文章属于 Java 8 教程(LTS)系列教程 在 Java 8 中,Function 接口是一个函数接口,它位于包 java.util.function 下. Function 接口中定义了一个 ...
- vscode搭建python环境
这两天刚下了一个pycharm,结果使用之后将vscode给崩了,重装的时候有些步骤也记不清,走了一些弯路,做个总结来记录一下(本人觉得vscode比pycharm好用一点). Python下载安装 ...
- Vim的操作
记录下vim的快捷键操作: I 进入编辑: Esc 退出编辑: 按ESC键 跳到命令模式,然后::w 保存文件但不退出vi:w file 将修改另外保存到file中,不退出vi:w ...
- JPcap入门
1,参照入门:安装第一个代码:https://blog.csdn.net/qq_37638061/article/details/80710143 2,数据解析,不可用但有启发意义:https://b ...
- [noip6]模板
平衡树好题啊 现在暂时还不知道用普通线段树该咋做.... 刚刚做完 二逼平衡树,感觉自己的 \(splay\) 水平有了很大很大的长进,然鹅.... 这题又给我当头一棒.... 然后就一下午出去了但总 ...
- Python实用案例,Python脚本,Python实现自动监测Github项目并打开网页
往期回顾 Python实现文件自动归类 前言: 今天我们就利用Python脚本实现Github项目的更新,提醒方式是邮箱.直接开整~ 项目地址: https://github.com/kenwoodj ...
- GhostScript 沙箱绕过(命令执行)漏洞(CVE-2018-16509)
影响范围: Ghostscript 9.24之前版本 poc地址 https://github.com/vulhub/vulhub/blob/master/ghostscript/CVE-2018-1 ...
- 根据随身固态U盘卷标搜索U盘盘符并打开文件的批处理脚本.bat 徐晓亮 595076941@qq.com 2019年12月19日6点50分
@Echo offRem 根据随身固态U盘卷标搜索U盘盘符并打开文件的批处理脚本.batRem 徐晓亮 595076941@qq.com 2019年12月19日6点50分 Rem 此批处理脚本源代码的 ...
- 【GCC编译器】计算支配树信息 Part1 - 求CFG的深度为主搜索树
深度为主生成树:将图中所有的结点和那些构成深度为主次序的边表示为树的形式,并将其他的边(这些边不是深度为主次序的一部分)用一种有别于树的方式来表示(我们用虚线而不是实线表示它们) 属于深度为主生成树的 ...
- HCNA Routing&Switching之STP基础
前文我们了解了VLAN动态注册协议GVRP相关话题,回顾请参考https://www.cnblogs.com/qiuhom-1874/p/15113770.html:今天我们来讨论下二层环路和STP相 ...