Hi, there.
I think RadBook is a great component for document viewer.
The problem is that I need to change the Width and Height of the viewer and the contents need to reformat the pages to fit in.
I tested code based on "RadBookIntegration" sample by adding the follwoing code.
private void RadButtonIncrease_Click(object sender, RoutedEventArgs e) { RadDocument doc = this.viewManager.Document; doc.DefaultPageLayoutSettings.Width += 50; doc.DefaultPageLayoutSettings.Height += 50; doc.UpdateLayout(); } private void RadButtonDecrease_Click(object sender, RoutedEventArgs e) { RadDocument doc = this.viewManager.Document; doc.DefaultPageLayoutSettings.Width -= 50; doc.DefaultPageLayoutSettings.Height -= 50; doc.UpdateLayout(); }
I believe UpdateLayout should reformat the contents but the result is not what I expected; page numbers and contents gets duplicated.
Can you please tell me what I'm doing wrong?
Thanks for your help.