单项选择题

在窗体上画一个文本框、一个标签和一个命令按钮,其名称分别为Textl、Labell和 Commandl,然后编写如下两个事件过程:
Prirate SUb Command1 Click()
strText = InputBox(“请输入”)
Textl.Text = strText
End Sub
Private Sub Text1 Change()
Labell.Caption = Right(Trim(Text1.Text), 3)
End Sub
程序运行后,单击命令按钮,如果在输入对话框中输入abcdef,则在标签中显示的内容是

A.空
B.abcdef
C.abc
D.def