在窗体上画一个名称方List1的列表框,一个名称为Label1的标签。列表框中显示若干城市的名称。当单击列表框中的某个城市名时,在标签中显示选中城市的名称。下列正确实现上述功能的程序是______。
A. Private Sub List1_Click()
B. Label1.Caption=List1.Listlndex
C. End Sub
D. Private Sub List1_CJick()
E. Label1.Nane=List1.Listlndex
F. End Sub
G. Private Sub List1_Click()
H. Label1.Name=List1.Text
I. End Sub
J. Private Sub List_Click()
K. Label1.Caption=List1.Text
L. End Sub