From bf67edb4cc77ed8f8c7842671341597bce118137 Mon Sep 17 00:00:00 2001 From: syneffort Date: Wed, 27 Sep 2023 09:54:56 +0900 Subject: [PATCH] capture --- PacticeSolution/Capture/App.xaml | 9 ++ PacticeSolution/Capture/App.xaml.cs | 17 ++ PacticeSolution/Capture/AssemblyInfo.cs | 10 ++ PacticeSolution/Capture/Capture.csproj | 14 ++ PacticeSolution/Capture/MainWindow.xaml | 25 +++ PacticeSolution/Capture/MainWindow.xaml.cs | 84 ++++++++++ PacticeSolution/Capture/OptionContext.cs | 16 ++ PacticeSolution/PacticeSolution.sln | 12 ++ PacticeSolution/WPFCanvas/App.xaml | 9 ++ PacticeSolution/WPFCanvas/App.xaml.cs | 17 ++ PacticeSolution/WPFCanvas/AssemblyInfo.cs | 10 ++ PacticeSolution/WPFCanvas/MainWindow.xaml | 64 ++++++++ PacticeSolution/WPFCanvas/MainWindow.xaml.cs | 161 +++++++++++++++++++ PacticeSolution/WPFCanvas/WPFCanvas.csproj | 10 ++ 14 files changed, 458 insertions(+) create mode 100644 PacticeSolution/Capture/App.xaml create mode 100644 PacticeSolution/Capture/App.xaml.cs create mode 100644 PacticeSolution/Capture/AssemblyInfo.cs create mode 100644 PacticeSolution/Capture/Capture.csproj create mode 100644 PacticeSolution/Capture/MainWindow.xaml create mode 100644 PacticeSolution/Capture/MainWindow.xaml.cs create mode 100644 PacticeSolution/Capture/OptionContext.cs create mode 100644 PacticeSolution/WPFCanvas/App.xaml create mode 100644 PacticeSolution/WPFCanvas/App.xaml.cs create mode 100644 PacticeSolution/WPFCanvas/AssemblyInfo.cs create mode 100644 PacticeSolution/WPFCanvas/MainWindow.xaml create mode 100644 PacticeSolution/WPFCanvas/MainWindow.xaml.cs create mode 100644 PacticeSolution/WPFCanvas/WPFCanvas.csproj diff --git a/PacticeSolution/Capture/App.xaml b/PacticeSolution/Capture/App.xaml new file mode 100644 index 0000000..d7e1708 --- /dev/null +++ b/PacticeSolution/Capture/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PacticeSolution/Capture/App.xaml.cs b/PacticeSolution/Capture/App.xaml.cs new file mode 100644 index 0000000..cdc7039 --- /dev/null +++ b/PacticeSolution/Capture/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 Capture +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PacticeSolution/Capture/AssemblyInfo.cs b/PacticeSolution/Capture/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/PacticeSolution/Capture/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/Capture/Capture.csproj b/PacticeSolution/Capture/Capture.csproj new file mode 100644 index 0000000..3cedcda --- /dev/null +++ b/PacticeSolution/Capture/Capture.csproj @@ -0,0 +1,14 @@ + + + + WinExe + net6.0-windows + enable + true + + + + + + + diff --git a/PacticeSolution/Capture/MainWindow.xaml b/PacticeSolution/Capture/MainWindow.xaml new file mode 100644 index 0000000..69c5d0b --- /dev/null +++ b/PacticeSolution/Capture/MainWindow.xaml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + +