From 60796212437eb30462d9289b743c04594e9f5bef Mon Sep 17 00:00:00 2001 From: syneffort Date: Fri, 11 Aug 2023 14:35:16 +0900 Subject: [PATCH] speech --- PacticeSolution/PacticeSolution.sln | 6 ++ PacticeSolution/Speech/App.xaml | 9 +++ PacticeSolution/Speech/App.xaml.cs | 17 +++++ PacticeSolution/Speech/AssemblyInfo.cs | 10 +++ PacticeSolution/Speech/MainWindow.xaml | 25 +++++++ PacticeSolution/Speech/MainWindow.xaml.cs | 81 +++++++++++++++++++++++ PacticeSolution/Speech/Speech.csproj | 14 ++++ 7 files changed, 162 insertions(+) create mode 100644 PacticeSolution/Speech/App.xaml create mode 100644 PacticeSolution/Speech/App.xaml.cs create mode 100644 PacticeSolution/Speech/AssemblyInfo.cs create mode 100644 PacticeSolution/Speech/MainWindow.xaml create mode 100644 PacticeSolution/Speech/MainWindow.xaml.cs create mode 100644 PacticeSolution/Speech/Speech.csproj diff --git a/PacticeSolution/PacticeSolution.sln b/PacticeSolution/PacticeSolution.sln index 28df5d3..73306e5 100644 --- a/PacticeSolution/PacticeSolution.sln +++ b/PacticeSolution/PacticeSolution.sln @@ -127,6 +127,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EntityFrameworkSample", "En EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPlayer", "MediaPlayer\MediaPlayer.csproj", "{0E7DB4A2-B598-452B-B1B4-CF36685D0D53}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Speech", "Speech\Speech.csproj", "{248DDC0C-F8C0-4687-BBC2-71C7C310537E}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -381,6 +383,10 @@ Global {0E7DB4A2-B598-452B-B1B4-CF36685D0D53}.Debug|Any CPU.Build.0 = Debug|Any CPU {0E7DB4A2-B598-452B-B1B4-CF36685D0D53}.Release|Any CPU.ActiveCfg = Release|Any CPU {0E7DB4A2-B598-452B-B1B4-CF36685D0D53}.Release|Any CPU.Build.0 = Release|Any CPU + {248DDC0C-F8C0-4687-BBC2-71C7C310537E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {248DDC0C-F8C0-4687-BBC2-71C7C310537E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {248DDC0C-F8C0-4687-BBC2-71C7C310537E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {248DDC0C-F8C0-4687-BBC2-71C7C310537E}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PacticeSolution/Speech/App.xaml b/PacticeSolution/Speech/App.xaml new file mode 100644 index 0000000..2820b3a --- /dev/null +++ b/PacticeSolution/Speech/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/Speech/App.xaml.cs b/PacticeSolution/Speech/App.xaml.cs new file mode 100644 index 0000000..acb5087 --- /dev/null +++ b/PacticeSolution/Speech/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 Speech +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/Speech/AssemblyInfo.cs b/PacticeSolution/Speech/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/PacticeSolution/Speech/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/Speech/MainWindow.xaml b/PacticeSolution/Speech/MainWindow.xaml new file mode 100644 index 0000000..c4d83f5 --- /dev/null +++ b/PacticeSolution/Speech/MainWindow.xaml @@ -0,0 +1,25 @@ + + + + + + + +