AvalonStudio.Shell.Commands.RedoCommandDefinition.RedoCommandDefinition C# (CSharp) Method

RedoCommandDefinition() public method

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

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

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