From e7c5f66c1b1e25c69cf14840e2d396cb214d7af9 Mon Sep 17 00:00:00 2001 From: syneffort Date: Mon, 19 Jun 2023 14:40:22 +0900 Subject: [PATCH] clock gadget --- PacticeSolution/ClockGadget/App.xaml | 9 +++ PacticeSolution/ClockGadget/App.xaml.cs | 17 +++++ PacticeSolution/ClockGadget/AssemblyInfo.cs | 10 +++ .../ClockGadget/ClockGadget.csproj | 10 +++ PacticeSolution/ClockGadget/MainWindow.xaml | 45 +++++++++++++ .../ClockGadget/MainWindow.xaml.cs | 63 +++++++++++++++++++ PacticeSolution/PacticeSolution.sln | 6 ++ 7 files changed, 160 insertions(+) create mode 100644 PacticeSolution/ClockGadget/App.xaml create mode 100644 PacticeSolution/ClockGadget/App.xaml.cs create mode 100644 PacticeSolution/ClockGadget/AssemblyInfo.cs create mode 100644 PacticeSolution/ClockGadget/ClockGadget.csproj create mode 100644 PacticeSolution/ClockGadget/MainWindow.xaml create mode 100644 PacticeSolution/ClockGadget/MainWindow.xaml.cs diff --git a/PacticeSolution/ClockGadget/App.xaml b/PacticeSolution/ClockGadget/App.xaml new file mode 100644 index 0000000..e629ddc --- /dev/null +++ b/PacticeSolution/ClockGadget/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/ClockGadget/App.xaml.cs b/PacticeSolution/ClockGadget/App.xaml.cs new file mode 100644 index 0000000..7f5b103 --- /dev/null +++ b/PacticeSolution/ClockGadget/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 ClockGadget +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/ClockGadget/AssemblyInfo.cs b/PacticeSolution/ClockGadget/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/PacticeSolution/ClockGadget/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/ClockGadget/ClockGadget.csproj b/PacticeSolution/ClockGadget/ClockGadget.csproj new file mode 100644 index 0000000..4106cb0 --- /dev/null +++ b/PacticeSolution/ClockGadget/ClockGadget.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/PacticeSolution/ClockGadget/MainWindow.xaml b/PacticeSolution/ClockGadget/MainWindow.xaml new file mode 100644 index 0000000..e52b989 --- /dev/null +++ b/PacticeSolution/ClockGadget/MainWindow.xaml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + +