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

Catel - Part 8 of n: WP7 Mango and Unit Testing the Camera

Rate me:
Please Sign up or sign in to vote.
4.89/5 (4 votes)
2 Sep 2011CPOL14 min read 32.3K   527   9  
This article is about Windows Phone 7 Mango and unit testing the camera
namespace Catel.Articles._08___WP7_Camera.ViewModels
{
    using MVVM;

    /// <summary>
    /// About view model.
    /// </summary>
    public class AboutViewModel : ViewModelBase
    {
        #region Variables
        #endregion

        #region Constructor & destructor
        /// <summary>
        /// Initializes a new instance of the <see cref="AboutViewModel"/> class.
        /// </summary>
        public AboutViewModel()
        {
        }
        #endregion

        #region Properties
        /// <summary>
        /// Gets the title of the view model.
        /// </summary>
        /// <value>The title.</value>
        public override string Title { get { return "About"; } }
        #endregion

        #region Commands
        #endregion

        #region Methods
        #endregion
    }
}

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
Software Developer
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions