AvalonStudio.Controls.Standard.SolutionExplorer.Commands.CloseSolutionCommandDefinition.CloseSolutionCommandDefinition C# (CSharp) 메소드

CloseSolutionCommandDefinition() 공개 메소드

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