From 26e8f9ceb45cc1650e2ac6ca32d7e8b9e29e827b Mon Sep 17 00:00:00 2001 From: syneffort Date: Fri, 11 Aug 2023 11:42:37 +0900 Subject: [PATCH] media player --- PacticeSolution/MediaPlayer/App.xaml | 9 ++ PacticeSolution/MediaPlayer/App.xaml.cs | 17 +++ PacticeSolution/MediaPlayer/AssemblyInfo.cs | 10 ++ PacticeSolution/MediaPlayer/MainWindow.xaml | 54 ++++++++ .../MediaPlayer/MainWindow.xaml.cs | 122 ++++++++++++++++++ .../MediaPlayer/MediaPlayer.csproj | 10 ++ PacticeSolution/PacticeSolution.sln | 14 +- 7 files changed, 232 insertions(+), 4 deletions(-) create mode 100644 PacticeSolution/MediaPlayer/App.xaml create mode 100644 PacticeSolution/MediaPlayer/App.xaml.cs create mode 100644 PacticeSolution/MediaPlayer/AssemblyInfo.cs create mode 100644 PacticeSolution/MediaPlayer/MainWindow.xaml create mode 100644 PacticeSolution/MediaPlayer/MainWindow.xaml.cs create mode 100644 PacticeSolution/MediaPlayer/MediaPlayer.csproj diff --git a/PacticeSolution/MediaPlayer/App.xaml b/PacticeSolution/MediaPlayer/App.xaml new file mode 100644 index 0000000..e7c2aac --- /dev/null +++ b/PacticeSolution/MediaPlayer/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/MediaPlayer/App.xaml.cs b/PacticeSolution/MediaPlayer/App.xaml.cs new file mode 100644 index 0000000..0e93379 --- /dev/null +++ b/PacticeSolution/MediaPlayer/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace MediaPlayer +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/MediaPlayer/AssemblyInfo.cs b/PacticeSolution/MediaPlayer/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/PacticeSolution/MediaPlayer/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/PacticeSolution/MediaPlayer/MainWindow.xaml b/PacticeSolution/MediaPlayer/MainWindow.xaml new file mode 100644 index 0000000..e9db83d --- /dev/null +++ b/PacticeSolution/MediaPlayer/MainWindow.xaml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + +