27 lines
514 B
C#
27 lines
514 B
C#
namespace InspectionUI
|
|
{
|
|
using InspectionUI.Abstraction.Interfaces;
|
|
|
|
using System;
|
|
|
|
public class ItemsGridCellInputVM : ItemsGridCellVM, IGridCellInput
|
|
{
|
|
public ItemsGridCellInputVM() : base()
|
|
{
|
|
|
|
}
|
|
|
|
public event Action<string> TextChanged;
|
|
|
|
public override string Text
|
|
{
|
|
get => base.Text;
|
|
set
|
|
{
|
|
base.Text = value;
|
|
this.TextChanged?.Invoke(value);
|
|
}
|
|
}
|
|
}
|
|
}
|