DevExpress XtraReport在运行时

时间:2015-12-01 16:30:24

标签: c# asp.net devexpress xtrareport

因此,在我们的报告中,我们在Detail Band中有一个ImageBox,我们希望每页有不同的图像 看到在详细信息带的BeforePrint事件中更改它不起作用(因为它仅在每次打印报告时调用一次)我到目前为止遵循了以下方法(这不起作用):

在报表的页眉带标签的PrintOnPage事件中(为了使其名称每页并且能够在新的XRPictureBox中使用PrintOnPageEventArgs - 我需要PageIndex ):

private void xrLabel10_PrintOnPage(object sender, PrintOnPageEventArgs e)
{
    this.Detail.Controls.Remove(xrPictureBox1); //Existing PictureBox control
    this.Detail.Controls.Add(PictureBox(e));
}

这称之为:

private List<Bitmap> _imageList;

public XRPictureBox PictureBox(PrintOnPageEventArgs e)
{
    XRPictureBox pictureBox = new XRPictureBox();
    var articleService = DependencyResolver.Current.GetService<IArticleService>();
    int width;
    int height;

    pictureBox.Name = "xrPictureBox_" + e.PageIndex;

    pictureBox.BackColor = Color.Transparent;
    pictureBox.Dpi = 254F;
    pictureBox.LocationFloat = new DevExpress.Utils.PointFloat(108.4792F, 71.4375F);
    pictureBox.Name = "xrPictureBox_" + e.PageIndex;
    pictureBox.SizeF = new SizeF(950F, 1225F);
    pictureBox.Sizing = ImageSizeMode.Squeeze;
    pictureBox.StylePriority.UseBackColor = false;

    if (ReportUnit == ReportUnit.HundredthsOfAnInch)
    {
        width = (int)(GraphicsUnitConverter.Convert(xrPictureBox1.Size.Width, GraphicsUnit.Inch, GraphicsUnit.Pixel) / 100);
        height = (int)(GraphicsUnitConverter.Convert(xrPictureBox1.Size.Height, GraphicsUnit.Inch, GraphicsUnit.Pixel) / 100);
    }
    else
    {
        width = (int)(GraphicsUnitConverter.Convert(xrPictureBox1.Size.Width, GraphicsUnit.Millimeter, GraphicsUnit.Pixel) / 10);
        height = (int)(GraphicsUnitConverter.Convert(xrPictureBox1.Size.Height, GraphicsUnit.Millimeter, GraphicsUnit.Pixel) / 10);
    }

    if (_imageList == null)
    {
        _imageList = articleService .GetListOfImages((int)articleId.Value, width, height, PageColor); //this gets a List<Bitmap>
    }

    if (_imageList[e.PageIndex] == null)
        return null;
    pictureBox.Image = _imageList[e.PageIndex];

    return pictureBox;
}

所以基本上我的想法是用新的XRPictureBox用新图像替换现有的Control。但它只是没有出现在报告中,即使在调试时我看到正在运行的代码并为正确的页面检索正确的图像。

编辑:nempoBu4的回答一般是正确的,但不幸的是我没有澄清一个额外的问题,这使得它不适合我的情况: 该报告还在PictureBox旁边有一个子报表,该子报表可以扩展到多个页面。我们希望PictureBox在每个页面中呈现不同的图像,并且它们不会触发PictureBox的PrintOnPage事件。我将尽快为我们找到的解决方法添加答案:)

1 个答案:

答案 0 :(得分:1)

图片框

您可以使用PrintOnPage本身的PictureBox事件 这是一个例子:

var source = new List<Tuple<int, string>>();

for (int index = 0; index < 100; index++)
    source.Add(new Tuple<int, string>(index, "Name" + index));

var pictureBox = new XRPictureBox();
pictureBox.PrintOnPage += (sender, e) =>
{
    if (_imageList[e.PageIndex] == null)
        return;

    pictureBox.Image = _imageList[e.PageIndex];
};

var labelItem1 = new XRLabel();
labelItem1.DataBindings.Add("Text", null, "Item1");
labelItem1.LeftF = 100;

var labelItem2 = new XRLabel();
labelItem2.DataBindings.Add("Text", null, "Item2");
labelItem2.LeftF = 200;

var detail = new DetailBand();
detail.Controls.AddRange(new XRControl[] { pictureBox, labelItem1, labelItem2 });

var report = new XtraReport();
report.Bands.Add(detail);
report.DataSource = source;

report.ShowRibbonPreview();

示例的结果: Result

水印

如果您希望每页只有一个图像,则可以使用水印 这是一个例子:

var source = new List<Tuple<int, string>>();

for (int index = 0; index < 100; index++)
    source.Add(new Tuple<int, string>(index, "Name" + index));

var labelItem1 = new XRLabel();
labelItem1.DataBindings.Add("Text", null, "Item1");
labelItem1.LeftF = 100;

var labelItem2 = new XRLabel();
labelItem2.DataBindings.Add("Text", null, "Item2");
labelItem2.LeftF = 200;

var detail = new DetailBand();
detail.Controls.AddRange(new XRControl[] { labelItem1, labelItem2 });

var report = new XtraReport();
report.Bands.Add(detail);
report.DataSource = source;

report.CreateDocument();

foreach (Page page in report.Pages)
    if (_imageList[page.Index] != null)
    {
        var watermark = new Watermark();
        watermark.Image = _imageList[page.Index];

        page.AssignWatermark(watermark);
    }

report.ShowRibbonPreview();

结果如下:
Watermarks