diff --git a/lab1/App.xaml b/lab1/App.xaml new file mode 100644 index 0000000..2ae6b88 --- /dev/null +++ b/lab1/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/lab1/App.xaml.cs b/lab1/App.xaml.cs new file mode 100644 index 0000000..13054f3 --- /dev/null +++ b/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/AssemblyInfo.cs b/lab1/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/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/MainWindow.xaml b/lab1/MainWindow.xaml new file mode 100644 index 0000000..7e39982 --- /dev/null +++ b/lab1/MainWindow.xaml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/lab1/MainWindow.xaml.cs b/lab1/MainWindow.xaml.cs new file mode 100644 index 0000000..6cd2f43 --- /dev/null +++ b/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(); + } + } +} diff --git a/lab1/lab1.csproj b/lab1/lab1.csproj new file mode 100644 index 0000000..4106cb0 --- /dev/null +++ b/lab1/lab1.csproj @@ -0,0 +1,10 @@ + + + + WinExe + net6.0-windows + enable + true + + + diff --git a/lab1/lab1.sln b/lab1/lab1.sln new file mode 100644 index 0000000..7b7bf4f --- /dev/null +++ b/lab1/lab1.sln @@ -0,0 +1,37 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34024.191 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "lab1", "lab1.csproj", "{C8A39C3C-7425-4F13-9FF8-4D3C60C43EA1}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lab2", "..\lab2\lab2.csproj", "{9A7D0454-F395-4D93-B77D-16844927C120}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lab3", "..\lab3\lab3.csproj", "{E7CA4407-9AFA-4279-AB13-4E8F985FB476}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C8A39C3C-7425-4F13-9FF8-4D3C60C43EA1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C8A39C3C-7425-4F13-9FF8-4D3C60C43EA1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C8A39C3C-7425-4F13-9FF8-4D3C60C43EA1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C8A39C3C-7425-4F13-9FF8-4D3C60C43EA1}.Release|Any CPU.Build.0 = Release|Any CPU + {9A7D0454-F395-4D93-B77D-16844927C120}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9A7D0454-F395-4D93-B77D-16844927C120}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9A7D0454-F395-4D93-B77D-16844927C120}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9A7D0454-F395-4D93-B77D-16844927C120}.Release|Any CPU.Build.0 = Release|Any CPU + {E7CA4407-9AFA-4279-AB13-4E8F985FB476}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E7CA4407-9AFA-4279-AB13-4E8F985FB476}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E7CA4407-9AFA-4279-AB13-4E8F985FB476}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E7CA4407-9AFA-4279-AB13-4E8F985FB476}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E32885F0-D079-4EFB-A303-F772523CC981} + EndGlobalSection +EndGlobal