Готовая седьмая лабораторная работа.

This commit is contained in:
Anastasia 2022-12-18 21:35:26 +04:00
parent 1a47764b37
commit 10d72b54ee
6 changed files with 3 additions and 35 deletions

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace AirplaneWithRadar
{
/// <summary>
/// Расширение для класса DrawningCar
/// Расширение для класса DrawingAirplane
/// </summary>
internal static class ExtentionAirplane
{

View File

@ -16,7 +16,7 @@ namespace AirplaneWithRadar
public partial class FormAirplaneConfig : Form
{
/// <summary>
/// Переменная-выбранная машина
/// Переменная-выбранный самолет
/// </summary>
DrawingAirplane _airplane = null;
/// <summary>
@ -164,7 +164,7 @@ namespace AirplaneWithRadar
}
}
/// <summary>
/// Добавление машины
/// Добавление самолета
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>

View File

@ -169,17 +169,6 @@ namespace AirplaneWithRadar
/// Метод отрисовки фона
/// </summary>
/// <param name="g"></param>
private void DrawHangar(Graphics g, int x, int y, int width, int height)
{
Pen pen = new(Color.Black, 3);
g.DrawLine(pen, x, y, x + width, y);
g.DrawLine(pen, x, y, x, y + height + 20);
g.DrawLine(pen, x, y + height + 20, x + width, y + height + 20);
}
/// <summary>
/// Метод отрисовки фона
/// </summary>
/// <param name="g"></param>
private void DrawBackground(Graphics g)
{
Pen pen = new(Color.White, 5);

View File

@ -89,16 +89,6 @@ namespace AirplaneWithRadar
}
}
/// <summary>
/// Метод записи информации в файл
/// </summary>
/// <param name="text">Строка, которую следует записать</param>
/// <param name="stream">Поток для записи</param>
private static void WriteToFile(string text, FileStream stream)
{
byte[] info = new UTF8Encoding(true).GetBytes(text);
stream.Write(info, 0, info.Length);
}
/// <summary>
/// Сохранение информации по автомобилям в хранилище в файл
/// </summary>
/// <param name="filename">Путь и имя файла</param>

View File

@ -13,9 +13,6 @@ namespace AirplaneWithRadar
[STAThread]
static void Main()
{
//Application.SetHighDpiMode(HighDpiMode.SystemAware);
//Application.EnableVisualStyles();
//Application.SetCompatibleTextRenderingDefault(false);
ApplicationConfiguration.Initialize();
var services = new ServiceCollection();
ConfigureServices(services);

View File

@ -1,8 +0,0 @@
using System;
public class Class1
{
public Class1()
{
}
}