From 84abd2cd11b5bcd78052015cc1f33b9e738b7417 Mon Sep 17 00:00:00 2001 From: lempamo Date: Sat, 25 Feb 2017 16:10:59 -0500 Subject: Basic AudioPlayer planning to use naudio api for this. thoughts? --- ShiftOS.WinForms/Applications/AudioPlayer.cs | 41 ++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 ShiftOS.WinForms/Applications/AudioPlayer.cs (limited to 'ShiftOS.WinForms/Applications/AudioPlayer.cs') diff --git a/ShiftOS.WinForms/Applications/AudioPlayer.cs b/ShiftOS.WinForms/Applications/AudioPlayer.cs new file mode 100644 index 0000000..b7dc9ee --- /dev/null +++ b/ShiftOS.WinForms/Applications/AudioPlayer.cs @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using ShiftOS.Engine; + +namespace ShiftOS.WinForms.Applications +{ + public partial class AudioPlayer : UserControl, IShiftOSWindow + { + public AudioPlayer() + { + InitializeComponent(); + } + + public void OnLoad() + { + + } + + public void OnSkinLoad() + { + + } + + public bool OnUnload() + { + return true; + } + + public void OnUpgrade() + { + + } + } +} -- cgit v1.2.3