| VB.NET |
|
Me.Button1 = New System.Windows.Forms.Button()
' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(184, 64) Me.Button1.Name = "Button1" Me.Button1.TabIndex = 0 Me.Button1.Text = "Button1" |
| C# |
|
this.button1 = new System.Windows.Forms.Button();
// // button1 // this.button1.Location = new System.Drawing.Point(184, 88); this.button1.Name = "button1"; this.button1.TabIndex = 0; this.button1.Text = "button1"; |
| VB.NET |
|
'load da classe Form1
Button1.Text = "Clique aqui" |
| C# |
|
//load da classe Form1
button1.Text="Clique aqui"; |