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

33 lines
1.1 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? _drawingSeaplane;
public FormSeaplane()
{
InitializeComponent();
}
private void ButtonCreate_Click(object sender, EventArgs e)
{
Random random = new();
_drawingSeaplane = new DrawingSeaplane();
_drawingSeaplane.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)));
_drawingSeaplane.SetPictureSize(pictureBoxSeaplane.Width, pictureBoxSeaplane.Height);
_drawingSeaplane.SetPosition(random.Next(10,100),random.Next(10,100));
}
}
}