11 lines
242 B
C#
11 lines
242 B
C#
namespace InspectionUI
|
|
{
|
|
using System.Windows.Media;
|
|
|
|
public class ItemsGridCellHeaderVM : ItemsGridCellVM
|
|
{
|
|
public ItemsGridCellHeaderVM() : base()
|
|
=> this.background = nameof(Brushes.WhiteSmoke);
|
|
}
|
|
}
|