23 lines
442 B
C#
23 lines
442 B
C#
namespace InspectionUI
|
|
{
|
|
using InspectionUI.Abstraction.Interfaces;
|
|
|
|
using System;
|
|
using System.Windows.Input;
|
|
|
|
public class ItemsGridCellCommandVM : ItemsGridCellVM, IGridCellCommand
|
|
{
|
|
public ItemsGridCellCommandVM() : base()
|
|
{
|
|
|
|
}
|
|
|
|
public ICommand Cmd { get; private set; }
|
|
|
|
public Action Executable
|
|
{
|
|
set => this.Cmd = new Command(value);
|
|
}
|
|
}
|
|
}
|