or
<telerik:RadPaneGroup cal:RegionManager.RegionName="{x:Static Regions:WellKnownRegionNames.MainRegion}" > <telerik:RadTabControl> </telerik:RadTabControl> </telerik:RadPaneGroup>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.
| <telerik:RadGridView Grid.ColumnSpan="2" SelectedItem="{Binding Path=WorkingMedicationOrder.DrugDosage_, Mode=TwoWay}" ItemsSource="{Binding DrugDosages}" Grid.Row="5" AutoGenerateColumns="False" ShowGroupPanel="False"> |
WorkingMedicationOrder.DrugDosage_ =
null;
Thanks,
Help?