单项选择题

窗体上画一个文本框(其名称为Text1)和一个标签(其名称为Labe11)。要求程序运行后,如果在文本框中输入字符,则立即在标签中显示相同的内容。以下可以实现上述操作的事件过程是______。

A.Private Sub Text1_Change() Labe11.Caption=Text1.Text End Sub
B.Private Sub Text1_Click() Labe11.Caption=Text1.Text End Sub
C.Private Sub Labe11_Change() Labe11.Caption=Text1.Text End Sub
D.Private Sub Labe11_Click() Labe11.Caption=Text1.Text End Sub