should i put inside
Code:
public Form1()
{
InitializeComponent();
label1.Text ="abc";
}
Code:
private void Form1_Load(object sender, EventArgs e)
{
label1.Text ="abc";
}
Leave a comment: