在窗体上画一个名称为Listl酌列表框,一个名称为Labell的标签,列表框中显示若干个项目。当单击列表框中的某个项目时,在标签中显示被选中项目的名称。下列能正确实现上述操作的程序是:______。
A.
Private Sub Listl_Click() Labell.Caption=Listl.ListIndex End Sub
B.
Private Sub Listl_Click() Labell.Name=Listl.ListIndex End Sub
C.
Private Sub Listl_click() Labell.Name=Listl.Text End Sub
D.
Private Sub Listl_Click() Labell.Caption=Listl.Text End Sub