1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8"?>
- <Report ScriptLanguage="CSharp" ReportInfo.Description="Demonstrates how to add a simple dialog form to the report. To do this: - press the "New Dialog" button on a toolbar; - this will create an empty dialog form with two default buttons. Put some controls on it and set its properties as you want. When you run a report, you will see the dialog. If you close it by the "OK" button, a report will be generated. Note: you may add several dialogs. Learn about various report objects on the Fast Reports Academy channel http://fast.report/afd51" ReportInfo.Created="01/18/2008 03:08:14" ReportInfo.Modified="03/29/2023 00:39:21" ReportInfo.CreatorVersion="1.0.0.0">
- <Dictionary/>
- <ReportPage Name="Page1" Watermark.Font="Arial, 60pt">
- <ReportTitleBand Name="ReportTitle1" Width="718.2" Height="37.8" CanGrow="true">
- <TextObject Name="Text1" Width="245.7" Height="28.35" Text="The report goes here..." Font="Segoe UI, 10pt, style=Bold" TextFill.Color="Firebrick"/>
- </ReportTitleBand>
- <PageFooterBand Name="PageFooter1" Top="39.8" Width="718.2" Height="28.35" Fill.Color="WhiteSmoke">
- <TextObject Name="Text12" Left="9.45" Width="217.35" Height="28.35" Cursor="Hand" Hyperlink.Value="https://www.fast-report.com/en/product/fast-report-net/" Text="Generated by FastReport" VertAlign="Center" Font="Segoe UI, 9pt, style=Underline" TextFill.Color="Blue"/>
- </PageFooterBand>
- </ReportPage>
- <DialogPage Name="Form1" AutoScaleDimensions="192, 192" Font="Segoe UI, 9pt" Text="Hello, FastReport!" ClientSize="494, 282">
- <ButtonControl Name="Button1" Left="160" Top="208" Width="150" Height="46" Font="Segoe UI, 9pt" TabIndex="0" Text="OK" DialogResult="OK"/>
- <ButtonControl Name="Button2" Left="320" Top="208" Width="150" Height="46" Font="Segoe UI, 9pt" TabIndex="1" Text="Cancel" DialogResult="Cancel"/>
- <LabelControl Name="Label1" Left="68" Top="44" Width="360" Height="64" Font="Segoe UI, 9pt" TabIndex="2" Text="Press OK button to run a report; press Cancel to terminate it." AutoSize="false" TextAlign="MiddleCenter"/>
- </DialogPage>
- </Report>
|