PIBD-13_Fomichev_V.S._Simple/Seaplane/FormSeaplane.cs

38 lines
1.4 KiB
C#
Raw Normal View History

2024-02-06 20:33:48 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Seaplane
{
public partial class FormSeaplane : Form
{
2024-02-07 08:29:34 +04:00
private DrawingSeaplane? _drawningSeaplane;
2024-02-06 20:33:48 +04:00
public FormSeaplane()
{
InitializeComponent();
}
2024-02-07 08:09:56 +04:00
2024-02-07 08:20:07 +04:00
private void ButtonCreate_Click(object sender, EventArgs e)
2024-02-07 08:09:56 +04:00
{
2024-02-07 08:20:07 +04:00
Random random = new();
2024-02-07 08:29:34 +04:00
_drawningSeaplane = new DrawingSeaplane();
_drawningSeaplane.Init(random.Next(100, 300), random.Next(1000, 3000), Color.FromArgb(random.Next(0, 255),
2024-02-07 08:20:07 +04:00
random.Next(0, 255), random.Next(0, 255)), Color.FromArgb(random.Next(0, 255), random.Next(0, 255), random.Next(0, 255)),
2024-02-07 08:29:34 +04:00
Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)), Convert.ToBoolean(random.Next(0, 2)));
_drawningSeaplane.SetPictureSize(pictureBoxSeaplane.Width, pictureBoxSeaplane.Height);
_drawningSeaplane.SetPosition(random.Next(10,100),random.Next(10,100));
Bitmap bmp = new(pictureBoxSeaplane.Width, pictureBoxSeaplane.Height);
Graphics gr = Graphics.FromImage(bmp);
_drawningSeaplane.DrawTransport(gr);
pictureBoxSeaplane.Image = bmp;
2024-02-07 08:09:56 +04:00
}
2024-02-06 20:33:48 +04:00
}
}