私は現在、いくつかのページネーションを行っています。ラップパネル内の TextBlock がオーバーフローしているかどうかを確認できるかどうかを知りたいですか? ところで、ページネーションについて何か知っているかどうかお聞きしたいのですが、少し教えてください。私がやっていることは、大きなサイズの文字列をページに分割し、電話の画面に表示することです。ありがとう。
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);