在运行时设置 XRPictureBox 的对齐方式

本文关键字:对齐 方式 XRPictureBox 运行时 设置 | 更新日期: 2023-09-27 18:35:30

我想创建一个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);

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

在运行时设置 XRPictureBox 的对齐方式

我建议您将此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 应用程序中动态创建报表