This is a migrated thread and some comments may be shown as answers.

Question

1 Answer 44 Views
Book
This is a migrated thread and some comments may be shown as answers.
Dharmesh Trivedi
Top achievements
Rank 1
Dharmesh Trivedi asked on 28 Nov 2009, 07:37 AM
I would like to show a picture of the item in the left and in right i want to show detail of that item. Now Picture and Detail are in the same record .

your help is appreciated.
Thx

1 Answer, 1 is accepted

Sort by
0
Valentin.Stoychev
Telerik team
answered on 30 Nov 2009, 12:45 PM
Hi Dharmesh Trivedi,

RadBook is an ItemsControl. The Left and Right pages are different items from the ItemsControl. So if you want the picture and the details to be on different pages you should not add them as one single item.

Please see the code below which explains how to position the content across the pages:
<telerikNavigation:RadBook>
              
            <!-- 1st image -->
            <StackPanel>
                <Image Source="img1.png"/>
            </StackPanel>
              
            <!-- 1st image details -->
            <StackPanel>
                <TextBlock Text="Details1"/>
                <TextBlock Text="Details2"/>
                <TextBlock Text="Details3"/>
                <TextBlock Text="Details4"/>
            </StackPanel>
              
            <!-- 2nd page on the left -->
            <StackPanel>
                <Image Source="img2.png"/>
            </StackPanel>
            <!-- second image details -->
            <StackPanel>
                <TextBlock Text="Details11"/>
                <TextBlock Text="Details12"/>
                <TextBlock Text="Details13"/>
                <TextBlock Text="Details14"/>
            </StackPanel>
        </telerikNavigation:RadBook>


Please let us know if you need more help.

Sincerely yours,
Valentin.Stoychev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Book
Asked by
Dharmesh Trivedi
Top achievements
Rank 1
Answers by
Valentin.Stoychev
Telerik team
Share this question
or