FModel/FModel/ViewModels/Commands/AddTabCommand.cs
2021-05-22 22:10:08 +02:00

16 lines
416 B
C#

using FModel.Framework;
namespace FModel.ViewModels.Commands
{
public class AddTabCommand : ViewModelCommand<TabControlViewModel>
{
public AddTabCommand(TabControlViewModel contextViewModel) : base(contextViewModel)
{
}
public override void Execute(TabControlViewModel contextViewModel, object parameter)
{
contextViewModel.AddTab();
}
}
}