APP开发跨平台

VisualStudio移动开发(C#、VB.NET)Smobiler开发平台——VoiceRecorder控件的使用方式.Net移动开发

耗尽温柔 提交于 2019-12-03 09:08:57
样式一   我们要实现上图中的效果,需要如下的操作: 从工具栏上的“Smobiler Components”拖动一个VoiceRecorder控件和一个ImageButton控件到窗体界面上 修改ImageButton的属性     1.BackColor属性       设置控件的背景色,将该属性设置为“Gray”,如图1; 图 1     2.BackColorAlpha属性       设置控件背景色透明度,将该属性设置为“0”,即全透明,如图2; 图 2     3.Lacation属性       让控件显示在合适的位置(100, 20),如图3; 图 3     4.ResourceID属性       设置按钮图标名称,将该属性设置为“ed”,如图4; 图 4     5.ImageButton的Click事件 VB : Private Sub ImageButton1_Click(sender As Object, e As EventArgs) Handles ImageButton1.Click VoiceRecorder1.GetRecorderAudio() End Sub 修改VoiceRecorder的属性     1.AudioPath属性       设置客户端音频的路径,默认设置为空,如图5; 图 5     2.GenerateMember属性