From ea8bc791de80f4631b465f98bec266a529f77517 Mon Sep 17 00:00:00 2001 From: syneffort Date: Mon, 3 Jul 2023 10:24:51 +0900 Subject: [PATCH] progressbar --- PacticeSolution/PacticeSolution.sln | 6 ++ PacticeSolution/ProgressBarSample/App.xaml | 9 +++ PacticeSolution/ProgressBarSample/App.xaml.cs | 17 +++++ .../ProgressBarSample/AssemblyInfo.cs | 10 +++ .../ProgressBarSample/MainWindow.xaml | 21 ++++++ .../ProgressBarSample/MainWindow.xaml.cs | 72 +++++++++++++++++++ .../ProgressBarSample.csproj | 10 +++ 7 files changed, 145 insertions(+) create mode 100644 PacticeSolution/ProgressBarSample/App.xaml create mode 100644 PacticeSolution/ProgressBarSample/App.xaml.cs create mode 100644 PacticeSolution/ProgressBarSample/AssemblyInfo.cs create mode 100644 PacticeSolution/ProgressBarSample/MainWindow.xaml create mode 100644 PacticeSolution/ProgressBarSample/MainWindow.xaml.cs create mode 100644 PacticeSolution/ProgressBarSample/ProgressBarSample.csproj diff --git a/PacticeSolution/PacticeSolution.sln b/PacticeSolution/PacticeSolution.sln index 1a44b39..92602cf 100644 --- a/PacticeSolution/PacticeSolution.sln +++ b/PacticeSolution/PacticeSolution.sln @@ -51,6 +51,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeyboardInputSample", "Keyb EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TabControlSample", "TabControlSample\TabControlSample.csproj", "{7A148D37-36D1-43B5-A133-B02CE5CB743F}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProgressBarSample", "ProgressBarSample\ProgressBarSample.csproj", "{EB304FB7-67EA-467E-9BE4-E55187415CAB}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -153,6 +155,10 @@ Global {7A148D37-36D1-43B5-A133-B02CE5CB743F}.Debug|Any CPU.Build.0 = Debug|Any CPU {7A148D37-36D1-43B5-A133-B02CE5CB743F}.Release|Any CPU.ActiveCfg = Release|Any CPU {7A148D37-36D1-43B5-A133-B02CE5CB743F}.Release|Any CPU.Build.0 = Release|Any CPU + {EB304FB7-67EA-467E-9BE4-E55187415CAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EB304FB7-67EA-467E-9BE4-E55187415CAB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EB304FB7-67EA-467E-9BE4-E55187415CAB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EB304FB7-67EA-467E-9BE4-E55187415CAB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PacticeSolution/ProgressBarSample/App.xaml b/PacticeSolution/ProgressBarSample/App.xaml new file mode 100644 index 0000000..e6c7828 --- /dev/null +++ b/PacticeSolution/ProgressBarSample/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/ProgressBarSample/App.xaml.cs b/PacticeSolution/ProgressBarSample/App.xaml.cs new file mode 100644 index 0000000..3cd04eb --- /dev/null +++ b/PacticeSolution/ProgressBarSample/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 ProgressBarSample +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/ProgressBarSample/AssemblyInfo.cs b/PacticeSolution/ProgressBarSample/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/PacticeSolution/ProgressBarSample/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/ProgressBarSample/MainWindow.xaml b/PacticeSolution/ProgressBarSample/MainWindow.xaml new file mode 100644 index 0000000..bfa515d --- /dev/null +++ b/PacticeSolution/ProgressBarSample/MainWindow.xaml @@ -0,0 +1,21 @@ + + +