Pibd-14_Eredavkin.R.A_Cours.../CourseWorkEreda копия/FormInfo.cs
2024-05-27 17:45:42 +04:00

26 lines
499 B
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 CourseWorkEreda
{
public partial class FormInfo : Form
{
public FormInfo()
{
InitializeComponent();
}
private void buttonCloseInfoForm_Click(object sender, EventArgs e)
{
Close();
}
}
}