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 WindowsFormsApplication5
{
public partial class Form4 : Form
{
public Form4()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
for (int i = 1; i < 11; i++)
{
Button newBtn = new Button();
newBtn.Text = "ห้อง เบอร์ " + i;
flowLayoutPanel1.Controls.Add(newBtn);
newBtn.Click += new EventHandler(newBtn_Click);
}
}
void newBtn_Click(object sender, EventArgs e)
{
Button clickedBtn = sender as Button;
clickedBtn.BackColor = Color.BlueViolet;
this.lblButtonIndex.Text = clickedBtn.Text;
}
}
}