18 lines
426 B
C#
18 lines
426 B
C#
namespace InspectionUI.ViewModels
|
|
{
|
|
using System.Windows;
|
|
|
|
internal class ItemsGridHeaderVM : ItemsGridCellVM
|
|
{
|
|
public ItemsGridHeaderVM() : base()
|
|
{
|
|
|
|
}
|
|
|
|
public GridLength Width { get; set; }
|
|
|
|
internal static readonly GridLength Auto = new GridLength(1, GridUnitType.Auto);
|
|
internal static readonly GridLength Star = new GridLength(1, GridUnitType.Star);
|
|
}
|
|
}
|