This website works better with JavaScript.
Home
Explore
Help
Sign In
BWPB3
/
WinFormControl
Watch
9
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Activity
Browse Source
播放声音文件方法重载
master
yibo
7 years ago
parent
1d39343478
commit
a97c94597c
1 changed files
with
9 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
WinFormControl/Utils/SoundPalyUtil.cs
+ 9
- 0
WinFormControl/Utils/SoundPalyUtil.cs
View File
@ -20,6 +20,15 @@ namespace WinFormControl
player
.
Load
(
)
;
player
.
Play
(
)
;
}
public
static
void
PlaySound
(
string
filePath
)
{
if
(
!
File
.
Exists
(
filePath
)
)
return
;
player
.
SoundLocation
=
filePath
;
player
.
Load
(
)
;
player
.
Play
(
)
;
}
}
public
enum
SoundType
Write
Preview
Loading…
Cancel
Save