Reputation: 422
I have five sections in Panorama. The background Image I am using is 618x340. Can I set the Image from the last section that is Fifth section. Usually it starts the BG Image from the first section. How do I do this?
Upvotes: 0
Views: 399
Reputation: 1384
This will need some minor Photoshop skills.
Crop the first section of your image and place it towards the end of the image.
Suppose your original image is as shown below.
+------|------|------|------|------+
| | | | | |
| | | | | |
| | | | | |
| I | II | III | IV | V |
| | | | | |
| | | | | |
+------|------|------|------|------+
The image somehow makes it look quite obvious.
+------|------|------|------|------+
| | | | | |
| | | | | |
| | | | | |
| V | II | III | IV | I |
| | | | | |
| | | | | |
+------|------|------|------|------+
Upvotes: 1
Reputation: 533
You can set the default panorama item as 5th that time your background image will start from 5 items, however this item will become your screen's first item to display. you can set it in your .CS file onload event.
myPanorama.DefaultItem = myPanorama.Items[4];
Hope it helps.
Upvotes: 1