I'm currently doing some pagination things. I would like to know if I can check whether the TextBlock inside of the wrappanel is overflowed or not? By the way I would like to ask if you know something about pagination please give me some tuts. What I'm doing is split a big sized string to pages and display them to the phone screen. Thanks.
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);