diff --git a/Interfaces/Interfaces.sln b/Interfaces/Interfaces.sln new file mode 100644 index 0000000..250bb81 --- /dev/null +++ b/Interfaces/Interfaces.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34031.279 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Interfaces", "Interfaces\Interfaces.csproj", "{5CDF0C42-E050-4100-B81B-A3A2E4B0C5F9}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5CDF0C42-E050-4100-B81B-A3A2E4B0C5F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5CDF0C42-E050-4100-B81B-A3A2E4B0C5F9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5CDF0C42-E050-4100-B81B-A3A2E4B0C5F9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5CDF0C42-E050-4100-B81B-A3A2E4B0C5F9}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {40F93B74-033B-461E-82D9-EDEEA68B97E0} + EndGlobalSection +EndGlobal diff --git a/Interfaces/Interfaces/App.xaml b/Interfaces/Interfaces/App.xaml new file mode 100644 index 0000000..2271107 --- /dev/null +++ b/Interfaces/Interfaces/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Interfaces/Interfaces/App.xaml.cs b/Interfaces/Interfaces/App.xaml.cs new file mode 100644 index 0000000..7548e7a --- /dev/null +++ b/Interfaces/Interfaces/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 Interfaces +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Interfaces/Interfaces/AssemblyInfo.cs b/Interfaces/Interfaces/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/Interfaces/Interfaces/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/Interfaces/Interfaces/Interfaces.csproj b/Interfaces/Interfaces/Interfaces.csproj new file mode 100644 index 0000000..4106cb0 --- /dev/null +++ b/Interfaces/Interfaces/Interfaces.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/Interfaces/Interfaces/MainWindow.xaml b/Interfaces/Interfaces/MainWindow.xaml new file mode 100644 index 0000000..8e76246 --- /dev/null +++ b/Interfaces/Interfaces/MainWindow.xaml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Interfaces/Interfaces/MainWindow.xaml.cs b/Interfaces/Interfaces/MainWindow.xaml.cs new file mode 100644 index 0000000..887051a --- /dev/null +++ b/Interfaces/Interfaces/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Interfaces +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/Interfaces/images/image1.avif b/Interfaces/images/image1.avif new file mode 100644 index 0000000..fd7904c Binary files /dev/null and b/Interfaces/images/image1.avif differ diff --git a/Interfaces/images/image2.png b/Interfaces/images/image2.png new file mode 100644 index 0000000..83d15a7 Binary files /dev/null and b/Interfaces/images/image2.png differ