我目前正在做一些分页的事情。我想知道是否可以检查包装面板内的 TextBlock 是否溢出?顺便问一下,如果你知道一些关于分页的事情,请给我一些 tuts。我正在做的是将一个大字符串拆分为页面并将它们显示到手机屏幕上。谢谢。
Microsoft.Phone.Controls.WrapPanel wrapPanel = new Microsoft.Phone.Controls.WrapPanel();
wrapPanel.Width = calculatedWidth;
wrapPanel.Height = calculatedHeight;
wrapPanel.Margin = new Thickness(pageFormat.leftMargin,pageFormat.topMargin,pageFormat.rightMargin,pageFormat.bottomMargin);
TextBlock tbl = new TextBlock();
tbl.Text = " Some text here ... ";
wrapPanel.Children.Add(tbl);