AvalonStudio.Controls.Standard.SolutionExplorer.Commands.CloseSolutionCommandDefinition.CloseSolutionCommandDefinition C# (CSharp) Méthode

CloseSolutionCommandDefinition() public méthode

public CloseSolutionCommandDefinition ( ) : System
Résultat System
		public CloseSolutionCommandDefinition()
		{
			command = ReactiveCommand.Create();
			command.Subscribe(async _ =>
			{
				var shell = IoC.Get<IShell>();
                await shell.CloseSolutionAsync();
			});
		}
CloseSolutionCommandDefinition