请进来的高高手,解释一下application类的具体用法和常用方法的用法,run,restart,new
Public Shared Sub [Exit]()
成员属于: System.Windows.Forms.Application
摘要:
通知所有消息泵必须终止,并且在处理了消息以后关闭所有应用程序窗口。
Public Sub New()
成员属于: System.Object
摘要:
初始化 System.Object 类的新实例
Public Shared Sub Run()
成员属于: System.Windows.Forms.Application
摘要:
在没有窗体的情况下,在当前线程上开始运行标准应用程序消息循环。
Public Shared Sub Run(ByVal context As System.Windows.Forms.ApplicationContext)
成员属于: System.Windows.Forms.Application
摘要:
在特定的 System.Windows.Forms.ApplicationContext 中,在当前线程上开始运行标准应用程序消息循环。
参数:
context: 一个 System.Windows.Forms.ApplicationContext,应用程序将在其中运行。
Public Shared Sub Run(ByVal mainForm As System.Windows.Forms.Form)
成员属于: System.Windows.Forms.Application
摘要:
在当前线程上开始运行标准应用程序消息循环,并使指定窗体可见。
参数:
mainForm: 一个 System.Windows.Forms.Form,它代表要使之可见的窗体。
application.run可以实例化吗