'Can't add button on C# forms

I do this and can't see button on my form. It worked earlier

var delete = new Button
{
    Text = "Delete",
    Size = new Size(50, 50),
    Location = new Point(50, 50),
};
this.Controls.Add(delete);


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source