The IsFirstPageOnTheRight property gets or sets if the first page of the book is displayed on the right or the left side. See First Page Display for more information. By default the C1Book control starts with the first page displayed on the left and two pages displayed, but you can customize this by setting the IsFirstPageOnTheRight property at design time in Microsoft Expression Blend, in XAML, and in code.
At Design Time in Blend
To set the IsFirstPageOnTheRight property at design time in Blend, complete the following steps:
1. Click the C1Book control once to select it.
2. Navigate to the Properties window and check the check box next to the IsFirstPageOnTheRight item.
In XAML
For example, to set the IsFirstPageOnTheRight property, add IsFirstPageOnTheRight="True" to the <c1:C1Book> tag so that it appears similar to the following:
<c1:C1Book x:Name="c1book1" Height="300" Width="450" IsFirstPageOnTheRight="True">
In Code
For example, to set the IsFirstPageOnTheRight property, add the following code to your project in the page's constructor:
Me.c1book1.IsFirstPageOnTheRight = True
•C#
this.c1book1.IsFirstPageOnTheRight = true;
What You've Accomplished
You've set the first page to appear on the right. If you run the application, the first page will appear as a single page, like the book's cover:
