WindowsFormsApplicationBase.OnInitialize 方法

定义

设置可视样式、文本显示样式以及应用程序主线程的当前主体(如果应用程序使用 Windows 身份验证),如果定义了初始屏幕,还要初始化初始屏幕。

protected:
 virtual bool OnInitialize(System::Collections::ObjectModel::ReadOnlyCollection<System::String ^> ^ commandLineArgs);
[System.STAThread]
protected virtual bool OnInitialize (System.Collections.ObjectModel.ReadOnlyCollection<string> commandLineArgs);
[<System.STAThread>]
abstract member OnInitialize : System.Collections.ObjectModel.ReadOnlyCollection<string> -> bool
override this.OnInitialize : System.Collections.ObjectModel.ReadOnlyCollection<string> -> bool
Protected Overridable Function OnInitialize (commandLineArgs As ReadOnlyCollection(Of String)) As Boolean

参数

commandLineArgs
ReadOnlyCollection<String>

只读集合,包含命令行参数作为当前应用程序的字符串。

返回

Boolean,指示是否应继续启动应用程序。

属性

注解

默认情况下,此方法设置主应用程序线程的视觉样式、文本显示样式和当前主体(若此应用程序使用 Windows 身份验证),并调用 ShowSplashScreen(若 /nosplash-nosplash 均未被用作命令行参数)。

此方法调用以下方法:

适用于

另请参阅