Skip to content

(PoC) C# Library for create reports using HTML

License

Notifications You must be signed in to change notification settings

lukasrochaaraujo/OpenReport

Repository files navigation

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