How To Change the Fold Size
To change the fold size you can use the FoldSize property of RadBook. It is of type Size. Here is an example below:
New to Telerik UI for WPF? Download free 30-day trial
To change the fold size you can use the FoldSize property of RadBook. It is of type Size. Here is an example below:
<telerik:RadBook x:Name="RadBook1"
Margin="50"
FoldSize="150,150" RightPageIndex="1">
<telerik:RadBookItem Background="Red">
<StackPanel>
<TextBlock FontSize="36" Text="Page 1" />
<Button Content="Click Me" />
</StackPanel>
</telerik:RadBookItem>
<telerik:RadBookItem Background="BlueViolet">
<StackPanel>
<TextBlock HorizontalAlignment="Right"
FontSize="36"
Text="Page 2" />
<Image Width="320"
Height="240"
Source="Koala.jpg" />
</StackPanel>
</telerik:RadBookItem>
<telerik:RadBookItem Background="RosyBrown">
<TextBlock FontSize="36" Text="Page 3" />
</telerik:RadBookItem>
<telerik:RadBookItem Background="Chocolate">
<TextBlock HorizontalAlignment="Right"
FontSize="36"
Text="Page 4" />
</telerik:RadBookItem>
</telerik:RadBook>
Copyright © 2025 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.
Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.