10.04.2019 Views

Ejercicios de programación .net (nivel inicial)

Se muestra el funcionamiento de los conceptos básicos para programar en .net

Se muestra el funcionamiento de los conceptos básicos para programar en .net

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Propieda<strong>de</strong>s <strong>de</strong> los objetos<br />

Public Class Form2<br />

Private Sub Button1_Click(ByVal sen<strong>de</strong>r As System.Object,<br />

ByVal e As System.EventArgs) Handles Button1.Click<br />

Label1.Text = "mi segundo formulario"<br />

End Sub<br />

Private Sub Button2_MouseMove(ByVal sen<strong>de</strong>r As Object,<br />

ByVal e As System.Windows.Forms.MouseEventArgs) Handles<br />

Button2.MouseMove<br />

Me.BackColor = Color.Gold<br />

End Sub<br />

Private Sub Button3_DoubleClick(ByVal sen<strong>de</strong>r As Object,<br />

ByVal e As System.EventArgs) Handles Button3.DoubleClick<br />

Me.BackColor = Color.Cyan<br />

End Sub<br />

End Class<br />

Leonel Navarrete

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!