Application.Startup Event

Definition

Occurs when the Run() method of the Application object is called.

C#
public event System.Windows.StartupEventHandler Startup;

Event Type

Examples

The following example shows how to acquire and process command-line options from a standalone application. If the /StartMinimized command-line parameter was provided, the application opens the main window in a minimized state.

XAML
<Application
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="SDKSample.App"
  Startup="App_Startup" />
C#
using System.Windows;

namespace SDKSample
{
    public partial class App : Application
    {
        void App_Startup(object sender, StartupEventArgs e)
        {
            // Application is running
            // Process command line args
            bool startMinimized = false;
            for (int i = 0; i != e.Args.Length; ++i)
            {
                if (e.Args[i] == "/StartMinimized")
                {
                    startMinimized = true;
                }
            }

            // Create main application window, starting minimized if specified
            MainWindow mainWindow = new MainWindow();
            if (startMinimized)
            {
                mainWindow.WindowState = WindowState.Minimized;
            }
            mainWindow.Show();
        }
    }
}

XAML browser applications (XBAPs) cannot retrieve and process command-line arguments because they are launched with ClickOnce deployment (see Deploying a WPF Application (WPF)). However, they can retrieve and process query string parameters from the URLs that are used to launch them.

Remarks

A typical Windows Presentation Foundation application may perform a variety of initialization tasks when it starts up, including:

  • Processing command-line parameters.

  • Opening the main window.

  • Initializing application-scope resources.

  • Initializing application-scope properties.

You can declaratively specify the main window and application-scope resources using XAML (StartupUri and Resources, respectively). Sometimes, however, the resources or main window of your application can only be determined programmatically at run time. Additionally, application-scope properties and command-line parameters can only be used programmatically. Programmatic initialization can be performed by handling the Startup event, including the following:

  • Acquire and process command-line parameters, which are available from the Args property of the StartupEventArgs class that is passed to the Startup event handler.

  • Initialize application-scope resources by using the Resources property.

  • Initialize application-scope properties by using the Properties property.

  • Instantiate and show one (or more) windows.

Note

Command-line parameters can also be acquired by calling the static GetCommandLineArgs method of the Environment object. However, GetCommandLineArgs requires full trust to execute.

If you set StartupUri using XAML, the main window that is created is not available from either the MainWindow property or the Windows property of the Application object until after the Startup event is processed. If you need access to the main window during startup, you need to manually create a new window object from your Startup event handler.

Note

If your application uses CredentialPolicy to specify a credential policy, you need to set CredentialPolicy after Startup is raised; otherwise, WPF sets it to a default internal policy directly after the Startup event has been raised.

The command-line arguments that are passed to the Startup event handler are not the same as the URL query string parameters that are passed to an XAML browser application (XBAP).

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also