0

我在 vb 2010 中有一个 Windows 窗体应用程序,其中包含一个组合框和一个按钮。要显示的下一个表单取决于用户选择的选项。如果单击按钮,我如何放置此代码?

4

1 回答 1

1

这是一个如何执行此类操作的示例:

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim nextForm As Form = Nothing
    Select Case ComboBox1.SelectedText
        Case "Option 1"
            nextForm = New Form2()
        Case "Option 2"
            nextForm = New Form3()
    End Select
    If nextForm IsNot Nothing Then
        nextForm.Show()
    End If
End Sub
于 2013-02-06T15:02:55.520 回答