单选题
窗体上画一个文本框(其名称为Text1)和一个标签(其名称为Labell)。要求程序运行后,如果在文本框中输入字符,则立即在标签中显示相同的内容。以下可以实现上述操作的事件过程是
______。
- A. Private Sub Text1_Change()
Labell.Caption=Text1.Text End Sub
- B. Private Sub Text1_Click()
Labell.Caption=Text1.Text End Sub
- C. Private Sub Labell_Change()
Labell.Caption=Text1.Text End Sub
- D. Private Sub Labell_Click()
Labell.Caption=Text1.Text End Sub