Click here to Skip to main content
15,885,546 members
Articles / Mobile Apps / Windows Phone 7

CP Vanity for Windows Phone 7

Rate me:
Please Sign up or sign in to vote.
4.98/5 (16 votes)
17 Jan 2013CPOL3 min read 78.4K   331   24  
A WP7 port of CPVanity with a CodeProject RSS reader.
using System;
using System.Windows;
using CPVanity.ViewModel;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;

namespace CPVanity
{
    /// <summary>
    /// Description for ImagePage.
    /// </summary>
    public partial class ImagePage : PhoneApplicationPage 
    {
        /// <summary>
        /// Initializes a new instance of the ImagePage class.
        /// </summary>
        public ImagePage()
        {
            InitializeComponent();
        }

        private void ApplicationBarIconButton_Click(object sender, EventArgs e)
        {
            string button = ((IApplicationBarMenuItem)sender).Text;
            var vm = DataContext as MainViewModel;

            if (button == "save" && vm != null)
            {
                try
                {
                    vm.Save(_image.Source);
                    MessageBox.Show("Image saved");
                }
                catch (Exception ex)
                {
                    MessageBox.Show("There was an error saving the image - " + ex.Message);
                }
            }             
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Starkey Laboratories
United States United States
The first computer program I ever wrote was in BASIC on a TRS-80 Model I and it looked something like:
10 PRINT "Don is cool"
20 GOTO 10

It only went downhill from there.

Hey look, I've got a blog

Comments and Discussions