| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using QuestPDF.Fluent;
- using QuestPDF.Helpers;
- using QuestPDF.Infrastructure;
- using QuestPDF.Previewer;
- using QuestPDF.ReportSample;
- using QuestPDF.ReportSample.Layouts;
- //ImagePlaceholder.Solid = true;
- var model = DataSource.GetReport();
- var report = new StandardReport(model);
- report.ShowInPreviewer();
- return;
- Document
- .Create(container =>
- {
- container.Page(page =>
- {
- page.Size(PageSizes.A4);
- page.Margin(2, Unit.Centimetre);
- page.PageColor(Colors.White);
- page.DefaultTextStyle(x => x.FontSize(20));
- page.Header()
- .Text("Hot Reload!")
- .SemiBold().FontSize(36).FontColor(Colors.Blue.Darken2);
- page.Content()
- .PaddingVertical(1, Unit.Centimetre)
- .Column(x =>
- {
- x.Spacing(20);
- x.Item().Table(t =>
- {
- t.ColumnsDefinition(c =>
- {
- c.RelativeColumn();
- c.RelativeColumn(3);
- });
- t.Cell().Border(1).Background(Colors.Grey.Lighten3).Padding(5).Text("Visual Studio");
- t.Cell().Border(1).Padding(5).Text("Start in debug mode with 'Hot Reload on Save' enabled.");
- t.Cell().Border(1).Background(Colors.Grey.Lighten3).Padding(5).Text("Command line");
- t.Cell().Border(1).Padding(5).Text("Run 'dotnet watch'.");
- });
- x.Item().Text("Modify this line and the preview should show your changes instantly.");
- });
- page.Footer()
- .AlignCenter()
- .Text(x =>
- {
- x.Span("Page ");
- x.CurrentPageNumber();
- });
- });
- })
- .ShowInPreviewer();
|