diff --git a/Lab1/Lab1.sln b/Lab1/Lab1.sln new file mode 100644 index 0000000..3ea3f7c --- /dev/null +++ b/Lab1/Lab1.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34202.233 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lab1", "Lab1\Lab1.csproj", "{CB9F367A-8891-4D9F-AB59-2589A6E55AD6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CB9F367A-8891-4D9F-AB59-2589A6E55AD6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CB9F367A-8891-4D9F-AB59-2589A6E55AD6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CB9F367A-8891-4D9F-AB59-2589A6E55AD6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CB9F367A-8891-4D9F-AB59-2589A6E55AD6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E5181B13-8E6F-4A35-9922-9298F305A85A} + EndGlobalSection +EndGlobal diff --git a/Lab1/Lab1/App.xaml b/Lab1/Lab1/App.xaml new file mode 100644 index 0000000..7f864ae --- /dev/null +++ b/Lab1/Lab1/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Lab1/Lab1/App.xaml.cs b/Lab1/Lab1/App.xaml.cs new file mode 100644 index 0000000..9e51d69 --- /dev/null +++ b/Lab1/Lab1/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 Lab1 +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Lab1/Lab1/AssemblyInfo.cs b/Lab1/Lab1/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/Lab1/Lab1/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/Lab1/Lab1/Lab1.csproj b/Lab1/Lab1/Lab1.csproj new file mode 100644 index 0000000..4106cb0 --- /dev/null +++ b/Lab1/Lab1/Lab1.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/Lab1/Lab1/MainWindow.xaml b/Lab1/Lab1/MainWindow.xaml new file mode 100644 index 0000000..73e100d --- /dev/null +++ b/Lab1/Lab1/MainWindow.xaml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + diff --git a/Lab1/Lab1/MainWindow.xaml.cs b/Lab1/Lab1/MainWindow.xaml.cs new file mode 100644 index 0000000..198cd4f --- /dev/null +++ b/Lab1/Lab1/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 Lab1 +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +}