valasztas_esti/ValasztasGUI/StatisztikaForm.cs

26 lines
498 B
C#
Raw Normal View History

2023-04-18 17:10:20 +00: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 ValasztasGUI
{
public partial class StatisztikaForm : Form
{
public StatisztikaForm()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
Close();
}
}
}