This is a learning exercise.
Can someone explain to me why this code:
Changes the color of BOTH the form and the button?
Thanks
Can someone explain to me why this code:
Code:
Public Class Form1
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Me.BackColor = Color.Green
End Sub
End Class
Thanks