Загрузил(а) файлы в ''

This commit is contained in:
DavidMakarov 2023-09-24 16:37:23 +04:00
parent b1b8189576
commit 0a6406a458
5 changed files with 78 additions and 0 deletions

11
AirplaneWithRadar.csproj Normal file
View File

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Update="PlaneVisual.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

25
AirplaneWithRadar.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33530.505
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AirplaneWithRadar", "Plane\AirplaneWithRadar.csproj", "{BCC1CA98-5E08-4289-95DB-530953E5F7D1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BCC1CA98-5E08-4289-95DB-530953E5F7D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BCC1CA98-5E08-4289-95DB-530953E5F7D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BCC1CA98-5E08-4289-95DB-530953E5F7D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BCC1CA98-5E08-4289-95DB-530953E5F7D1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F40E1830-8311-411E-8EB6-67A18C742CAD}
EndGlobalSection
EndGlobal

18
Class1.cs Normal file
View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirplaneWithRadar
{
public class Class1
{
private int x;
public int y { private get; set; }
public int Sum(int num1, int num2)
{
return num1 + num2;
}
}
}

16
Movement.cs Normal file
View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirplaneWithRadar
{
public enum Movement
{
Up = 1,
Down = 2,
Left = 3,
Right = 4,
}
}