What is the DesignerAttribute?
When is used this attribute?
[Designer]
private void InitializeComponent()
{
this.button1 = new Mobilize.Web.Button();
//
// button1
//
this.button1.Location = new System.Drawing.Point(10, 20);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(86, 36);
this.button1.TabIndex = 0;
this.button1.Text = "Translate";
.
.
.
}What happens to the method when used this attribute?
Was this helpful?