using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public class NewLabel: Form1
{
public NewLabel()
{
Label test = new Label();
test.Text = "This is a label";
test.Location = new Point(100, 100);
test.Visible = true;
this.Controls.Add(test);
}
}
private void CreateLabelButton_Click(object sender, EventArgs e)
{
NewLabel TestLabel = new NewLabel();
}
}
}