共用方式為


WindowsFormsApplicationBase.SplashScreen 屬性

定義

取得或設定這個應用程式的啟動顯示畫面。

public:
 property System::Windows::Forms::Form ^ SplashScreen { System::Windows::Forms::Form ^ get(); void set(System::Windows::Forms::Form ^ value); };
public System.Windows.Forms.Form SplashScreen { get; set; }
member this.SplashScreen : System.Windows.Forms.Form with get, set
Public Property SplashScreen As Form

屬性值

應用程式的啟動顯示畫面。

例外狀況

系統會將相同的值指派給這個屬性和 MainForm 屬性。

範例

這個範例會 My.Application.SplashScreen 使用 屬性和 My.Application.Startup 事件,以應用程式啟動時的狀態資訊來更新啟動顯示畫面。

Private Sub MyApplication_Startup(
    sender As Object,
    e As Microsoft.VisualBasic.ApplicationServices.StartupEventArgs
) Handles Me.Startup
    ' Get the splash screen.
    Dim splash As SplashScreen1 = CType(My.Application.SplashScreen, SplashScreen1)
    ' Display current status information.
    splash.Status = "Current user: " & My.User.Name
End Sub

此範例要求專案具有名為 的 SplashScreen1啟動顯示畫面。 啟動顯示畫面必須有名為 Status 的屬性,才能更新其使用者介面。

您必須在應用程式事件的 [程式代碼編輯器] 視窗中輸入此程式碼。 如需詳細資訊,請參閱 Application Page, Project Designer (Visual Basic)

備註

屬性 My.Application.SplashScreen 可讓您取得或設定 Form 應用程式用來作為啟動顯示畫面的物件,這是應用程式啟動時所顯示的第一個圖形表單。

此屬性支援 Visual Basic 應用程式模型。 如需詳細資訊,請參閱 Visual Basic應用程式模型概觀

當應用程式關閉時,不會保存此屬性的變更。 若要永久變更啟動顯示畫面,您必須變更 [項目設計工具] 中的設定。

依專案類型的可用性

專案類型 可用
Windows Forms 應用程式
類別庫
主控台應用程式
Windows Form 控制項程式庫
Web 控制項程式庫
Windows 服務
網站

適用於

另請參閱