Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 478 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 478 Bytes

Open Report

A simple library to display minimal reports for WinForms applications using .NET Framework 4.7.x

Example

[TableStyle(TableStyle.Striped)]
public class Produto
{
    [TableColumnHeader("Description")]
    [TableColumnSize(50)]
    public string Description { get; set; }

    [TableColumnHeader("Stock")]
    [TableColumnTotalize(ColumnFormatStyle.Integer)]
    public int StockAmmount { get; set; }
}

exemple