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
construct setting page in windows phone 8
146 Views Asked by sohan vanani At
2
There are 2 best solutions below
0
gregstoll
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.
Related Questions in IMAGE
- Add image to JCheckBoxMenuItem
- Display images on Django Template Site
- How to resize images with PHP PARSE SDK
- Animation in Java on top of JPanel
- Slow performance on ipad erasing image
- What are the pros and cons of the picture element?
- Carrierwave file upload with different file types
- How to use annotorious with angular
- Images not showing when uploaded to server
- ImageView doesn't show up
- Image Resizing adjusts ratio
- Displaying bitmap image on Android (OpenCV)
- Class 'Imagick' not found - PHP and Windows
- Image position - randomly select position
- Replace image 1 with image 2 after 5 sec
Related Questions in WINDOWS-PHONE-8
- Deployment failed because no Windows Phone was detected when using Windows Phone Emulator
- Ellipsis inside button content Windows Phone
- Binding.StringFormat doesn't adhere to CultureInfo.CurrentCulture
- Deploy enterprise (in-house) application on windows phone without developer unlocking the phone?
- Application configuration files for Windows Universal app
- Cordova 'deviceready' event firing twice on wp8
- Input cursor windows phone phonegap
- How can I create a simple text file on a windows phone (8.1) that can be accessed trough USB cable?
- Windows Phone 8.1 : how to Launch an Installed app From My app
- Receiving shared content using windows phone 8.0
- How can we run camera as background view in windows phone 8?
- Windows Phone local toast notification Text wrapping and image is not showing
- OneDrive SDK & background task WP8.1
- Windows Phone 8.1 Emulator Xde.exe stops working when clicking on "tools"
- FileNotFound when renaming photo WP8
Related Questions in WINDOWS-PHONE
- Deployment failed because no Windows Phone was detected when using Windows Phone Emulator
- Can I deploy multiple instances of my application on the same windows phone?
- Detect if Application was suspended in OnNavigatedFrom for Windows Phone 8
- Nvigation Windows Phone Apps
- converting string to a double in visual c++ by parsing
- How can I create a simple text file on a windows phone (8.1) that can be accessed trough USB cable?
- Create Page custom animations in Windows Phone 8.1 (Windows Runtime)
- Windows Phone local toast notification Text wrapping and image is not showing
- Windows Phone 8.1 Emulator Xde.exe stops working when clicking on "tools"
- Getting wifi name and other details of wifi in windows phone 8.1
- Impossible to pick video from gallery/library - phonegap/cordova
- How implement a (swipeable) card in windows phone?
- Gapless looping in Background Media Player for Windows Phone 8.1
- Windows Phone asynchronous call terminates
- Can I generate an appx with a windows phone project?
Related Questions in APPLICATION-SETTINGS
- change the settings file items in .Net console application
- How to save multiple small integers in one integer via bit shifting in Objective C
- How to define a static wpf ressource from c# project settings (properties) defined in another project
- Cleaner way to initialize application Settings to default values
- Multiple int values in config key C# XML
- Programmatically restrict access of Mobile data for all apps in Android
- Settings value empty when main program not running
- Save user settings in iPhone/iPad app
- how to put the settings functionality for Push Notification on/off inside the app in ios
- Saving key-value data in app setting
- C# Settings Custom Type List add not working
- Is there a maximum size for application settings?
- What options are there for storing Website/Application/Service Settings
- Why does this unrelated error happen when I try to setup Windows 8 settings?
- where is the properties file I can read from settingsReader in C#?
Related Questions in ALARMS
- Setting alarms daily android
- Cancelling a single alarm when you have multiple alarms
- Setting alarm clock to be shown in Clock application
- Graylog2 Alarms for non admins
- Android alarms, service as not been called
- Best approach to Triggering Event on SQL database
- AlarmManager.set(...) behavior not matching documentation. Am I doing something wrong?
- perl alarms not working as expected
- Multiple Alarms fired as one in an intent (List View)
- How to slave the Honeywell Tuxedo Touch to OpenHAB?
- Why alarms are not working when setting for next day and for long hours,when device is inactive for long duration the alarms are not fired
- How does one launch android version dependent alarm clock?
- Setting an alarm (as in alarm clock) using intents
- add multiple Alarms and alarm sound in Windows phone 8
- How to get notification when mobile in switch off mode
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
So you could do simply like this, within your
buttonclick event handler: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. ReferenceHope it helps!