Files
laatzen/Common/OmniPlus/InspectionUI/Plugins/ItemsGridCellInputVM.cs
T

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);
}
}
}
}