PIBD-13_Fomichev_V.S._Simple/Seaplane/FormSeaplane.cs
2024-02-07 08:29:34 +04:00

38 lines
1.4 KiB
C#

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
{
private DrawingSeaplane? _drawningSeaplane;
public FormSeaplane()
{
InitializeComponent();
}
private void ButtonCreate_Click(object sender, EventArgs e)
{
Random random = new();
_drawningSeaplane = new DrawingSeaplane();
_drawningSeaplane.Init(random.Next(100, 300), random.Next(1000, 3000), Color.FromArgb(random.Next(0, 255),
random.Next(0, 255), random.Next(0, 255)), Color.FromArgb(random.Next(0, 255), random.Next(0, 255), random.Next(0, 255)),
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;
}
}
}