namespace WinFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = "";
foreach (Control c in Controls)
{
label1.Text += c.Name + Environment.NewLine;
}
}
}
}
/*
* run:
*
* listBox1
* richTextBox1
* textBox1
* label1
* button1
*
*/