construct setting page in windows phone 8

123 Views Asked by At

I am developing on alarm based application I want to add one setting page to my app. I want to change image of Image control which is on my Mainpage. image should be changing when button click event occurs from setting page. All Images are stored in my simple local folder of application like assets folder. please help me

2

There are 2 best solutions below

3
On

So you could do simply like this, within your button click event handler:

BitmapImage imgSource = new BitmapImage(
      new Uri("/PivotApp1;component/Images/halfstar.png", UriKind.Relative));
imageName.Source = null;//imageName is the name of the image control
imageName.Source = imgSource;

For more you could refer these:

On Button Press - Change Image Source

Imagebutton change source property

To show multiple images, you could use the image sliding. Reference

Hope it helps!

0
On

If you're looking for an example of a settings page, check out my app templates: Universal version and Silverlight (WP 8.0) version - they both have a settings page and an example of how to respond to when a setting changes.