MainViewModel.InstallExecute C# (CSharp) Méthode

InstallExecute() public méthode

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

Usage Example

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