线条元素未出现在打印的第2页和后续页面上

时间:2013-03-27 15:51:39

标签: c# silverlight printing

我正在从Silverlight应用程序中打印一组标签。从数据库中读取构成数据的数据,并且动态创建UI元素并将其添加到Canvas以进行布局。标签以网格形式排列在页面上,行数和列数由正在使用的纸张库存确定。

除了添加一行“击出”元素(例如商品在售时的原始价格)之外,一切都运行正常:

Label on page one of print

Label on page two of print

这是生成行的代码:

var line = new Line { StrokeThickness = 2, Stroke = new SolidColorBrush(Colors.Black) };
line.X1 = 0;
line.SetBinding(Line.Y1Property, new Binding { ElementName = element.Name, Path = new PropertyPath("ActualHeight") });
line.Y2 = 0;
line.SetBinding(Line.X2Property, new Binding { ElementName = element.Name, Path = new PropertyPath("ActualWidth") });
// Insert the element straight after the element it's bound to
canvas.Children.Insert(canvas.Children.IndexOf(element) + 1, line);
line.SetValue(Canvas.TopProperty, element.GetValue(Canvas.TopProperty));
line.SetValue(Canvas.LeftProperty, element.GetValue(Canvas.LeftProperty));
// and make sure it's Z index is always higher
line.SetValue(Canvas.ZIndexProperty, (int)element.GetValue(Canvas.ZIndexProperty) + 1);
  • canvas是用于显示标签
  • 的Canvas
  • element是要插入的元素(在这种情况下是原始价格)。

  1. 正在调用所有正在打印的标签。
  2. 绑定是一致的。
  3. 如果我用硬编码值替换绑定,则会绘制线条,因此它似乎是由绑定中的某些内容引起的。但是:
  4. 每个标签的“parent”元素的ActualHeightActualWidth都相同。
  5. 在打印输出的其他地方没有画线(我可以看到)。如果我在第一页停止输出,则不会出现任何行。
  6. 其他一切正在出现并出现在正确的位置。
  7. 我错过了什么?

1 个答案:

答案 0 :(得分:1)

似乎是绑定有问题。无论我做什么,一旦我添加回来的线条消失了 - 在某些情况下甚至从第一页开始。

最后,唯一有效的方法是将代码更改为:

element.Measure(new Size(canvas.Width, canvas.Height));
var line = new Line { StrokeThickness = 2, Stroke = new SolidColorBrush(Colors.Black) };
line.X1 = 0.0;
line.Y1 = element.ActualHeight;
line.Y2 = 0.0;
line.X2 = element.ActualWidth;
// Insert the element straight after the element it's bound to
canvas.Children.Insert(canvas.Children.IndexOf(element) + 1, line);
line.SetValue(Canvas.TopProperty, element.GetValue(Canvas.TopProperty));
line.SetValue(Canvas.LeftProperty, element.GetValue(Canvas.LeftProperty));
// and make sure it's Z index is always higher
line.SetValue(Canvas.ZIndexProperty, (int)element.GetValue(Canvas.ZIndexProperty) + 1);
line.Height = element.ActualHeight;
line.Width = element.ActualWidth;

所以我“测量”文本元素以确保它的高度和宽度更新,然后直接设置Y1X2HeightWidth属性文本元素的ActualHeightActualWidth。这会将线条绘制在正确的位置和正确的尺寸。