34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FurnitureAssemblyContracts.Attributes
|
|
{
|
|
// Укажем, что данный атрибут можно прописать только в Property
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class ColumnAttribute : Attribute
|
|
{
|
|
public ColumnAttribute(string title = "", bool visible = true, int width = 0,
|
|
GridViewAutoSize gridViewAutoSize = GridViewAutoSize.None, bool isUseAutoSize = false)
|
|
{
|
|
Title = title;
|
|
Visible = visible;
|
|
Width = width;
|
|
GridViewAutoSize = gridViewAutoSize;
|
|
IsUseAutoSize = isUseAutoSize;
|
|
}
|
|
|
|
public string Title { get; private set; }
|
|
|
|
public bool Visible { get; private set; }
|
|
|
|
public int Width { get; private set; }
|
|
|
|
public GridViewAutoSize GridViewAutoSize { get; private set; }
|
|
|
|
public bool IsUseAutoSize { get; private set; }
|
|
}
|
|
}
|