MainViewModel.InstallExecute C# (CSharp) Method

InstallExecute() public method

public InstallExecute ( ) : void
return void
    public void InstallExecute()
    {
        IsBusy = true;
        Bootstrapper.Engine.Plan(LaunchAction.Install);
    }

Usage Example

Beispiel #1
0
 void Install_Click(object sender, RoutedEventArgs e)
 {
     viewModel.InstallExecute();
 }