C# Class System.Windows.Mvvm.Application.ApplicationStartedEventArgs

Represents the event arguments that are passed to the started event of the MvvmApplication.
Inheritance: EventArgs
显示文件 Open project: lecode-official/mvvm-framework Class Usage Examples

Public Methods

Method Description
ApplicationStartedEventArgs ( IEnumerable commandLineArguments, bool isFirstInstance ) : System.Collections.Generic

Initializes a new ApplicationStartedEventArgs instance.

Method Details

ApplicationStartedEventArgs() public method

Initializes a new ApplicationStartedEventArgs instance.
public ApplicationStartedEventArgs ( IEnumerable commandLineArguments, bool isFirstInstance ) : System.Collections.Generic
commandLineArguments IEnumerable The command line arguments with which the application has been started.
isFirstInstance bool /// A value that determines whether this application has been started as the first instance or whether there is already another instance, which is running (can for example be used to prevent multiple instances). ///
return System.Collections.Generic