From f61d8b78834d8aea40a8f5c96dac394eca6a83a1 Mon Sep 17 00:00:00 2001 From: Miguel Date: Sat, 15 Jun 2024 11:24:07 +0200 Subject: [PATCH] Add project files. --- App.xaml | 9 +++ App.xaml.cs | 14 +++++ AssemblyInfo.cs | 10 +++ EscribePassword.csproj | 17 ++++++ EscribePassword.sln | 25 ++++++++ MainWindow.xaml | 39 ++++++++++++ MainWindow.xaml.cs | 136 +++++++++++++++++++++++++++++++++++++++++ 7 files changed, 250 insertions(+) create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 AssemblyInfo.cs create mode 100644 EscribePassword.csproj create mode 100644 EscribePassword.sln create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..2a82125 --- /dev/null +++ b/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..16c17c8 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace EscribePassword +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/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/EscribePassword.csproj b/EscribePassword.csproj new file mode 100644 index 0000000..0d0a51b --- /dev/null +++ b/EscribePassword.csproj @@ -0,0 +1,17 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + + + + + + + diff --git a/EscribePassword.sln b/EscribePassword.sln new file mode 100644 index 0000000..f18a733 --- /dev/null +++ b/EscribePassword.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.34928.147 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EscribePassword", "EscribePassword.csproj", "{10D3496B-A382-49CD-833F-54C23578CA5C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {10D3496B-A382-49CD-833F-54C23578CA5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {10D3496B-A382-49CD-833F-54C23578CA5C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {10D3496B-A382-49CD-833F-54C23578CA5C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {10D3496B-A382-49CD-833F-54C23578CA5C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A613A9CA-493C-4F35-B086-15CE07262CE0} + EndGlobalSection +EndGlobal diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..3f30836 --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + +