• 2022-06-12
    窗体上有1个名称为Text1的文本框,1个名称为Label1的标签。程序运行后,如果在文本框中输入信息,则立即在标签中显示相同的内容。以下可以实现上述操作的事件过程为( )。
    A: A) Private Sub Label1_Click()
    B: Label1. Caption = Text1. Text
    C: End Sub
    D: B) Private Sub Label1_Change()
    E: Label1. Caption = Text1. Text
    F: End Sub
    G: C) Private Sub Text1_Click()
    H: Label1. Caption = Text1. Text
    I: End Sub
    J: D) Private Sub Text1_Change()
    K: Label1. Caption = Text1. Text
    L: End Sub
  • 举一反三