如何在控制台应用程序中动态创建Windows窗体

时间:2015-10-23 11:57:46

标签: vb.net vb.net-2010

我正在使用Visual Basic 2010编写自己的编程语言,有没有什么方法可以在控制台应用程序中动态创建Windows窗体而无需任何额外的广告。如果是这样..你能保持反应吗?

1 个答案:

答案 0 :(得分:0)

在控制台应用程序中,您必须添加对System.Windows.Forms的引用。然后基础是:

Sub Main()
    Dim NewForm As New System.Windows.Forms.Form
    NewForm.Text = "New Form"
    'Add any other settings or controls you want
    NewForm.ShowDialog()
End Sub

这将等到表单关闭后再退出应用程序。那是你想到的那种事吗?