AvalonStudio.Shell.Commands.RedoCommandDefinition.RedoCommandDefinition C# (CSharp) 메소드

RedoCommandDefinition() 공개 메소드

public RedoCommandDefinition ( ) : System
리턴 System
		public RedoCommandDefinition()
		{
			_command = ReactiveCommand.Create();

			_command.Subscribe(_ =>
			{
				var shell = IoC.Get<IShell>();

                (shell.SelectedDocument as EditorViewModel)?.Redo();
			});
		}
RedoCommandDefinition