0

我想创建一个 XtraReport 模板类,它获取一个报告对象并将其转换为我们的公司设计。首先,我创建了一个 ReportHeaderBand,它为徽标获取了一个 XRPictureBox。如何将 XRPictureBox 放在 ReportHeaderBand 的右侧?

到目前为止,这就是我正在做的事情:

internal class Kopfbereich: ReportHeaderBand
    {
        /// <summary>
        /// Erstellt ein Objekt für den Kopfbereich eines Reports
        /// </summary>
        public Kopfbereich()
        {
            DruckeLogo();
        }

        private void DruckeLogo()
        {
            XRPictureBox picBox = new XRPictureBox();
            picBox.Visible = true;
            picBox.Sizing = ImageSizeMode.AutoSize;
            picBox.Image = Resources.Brillux_Logo_Reports_ohne_Text;
            this.Controls.Add(picBox);
        }
    }

    //This Method is from other class and should print my report with template
    public XtraReport DruckeMitVorlage(XtraReport report)
    {
        Kopfbereich kopfbereich = new Kopfbereich();
        report.Bands.Add(kopfbereich);
        return report;
    }

我想在运行时创建它以获得动态模板。所以设计师不是一个选择。

我尝试按照代码行将 XRPictureBox 设置在右侧。

picBox.LocationF = new PointF(Report.PageWidth - picBox.WidthF - Report.Margins.Right.Width, 0);

但是徽标在下一页上显示一半。

4

1 回答 1

0

我建议您将此XRPictureBox控件添加到report header band而不是this.Controls. 它可以控制图片编辑打印在报表的顶部,而不是打印在其他页面上。

检查代码片段:

// Check if the TopMargin band is already present in the report. 
if(Bands.GetBandByType(typeof(ReportHeaderBand)) == null) {
    // Create a new TopMargin band and add it to the report. 
    ReportHeaderBandtmBand = new ReportHeaderBand();
    Bands.Add(tmBand);

    // Create a picture object
    XRPictureBox picBox = new XRPictureBox();
    picBox.Visible = true;
    picBox.Sizing = DevExpress.XtraPrinting.ImageSizeMode.AutoSize;
    picBox.Image = Resources.Logo;
    this.Controls.Add(picBox);

    // Add the label to the ReportHeaderBand band. 
    tmBand.Controls.Add(picBox);
}

您可以使用报表对象进行控制,如下所示:

 // Place the chart onto a report footer
  rep.Bands[BandKind.ReportHeader].Controls.Add(picBox);

参考:
如何在 WinForms 应用程序中动态创建报表

于 2013-10-15T12:17:31.633 回答