Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / WPF

Building WPF Applications with Self-Tracking Entity Generator and Visual Studio 2012 - Project Setup

Rate me:
Please Sign up or sign in to vote.
5.00/5 (14 votes)
17 Mar 2013CPOL8 min read 68K   3.5K   44  
This article describes the project setup of building a WPF sample application with Self-Tracking Entity Generator and Visual Studio 2012.
//-----------------------------------------------------------------------
// <copyright company="Microsoft">
//      (c) Copyright Microsoft Corporation.
//      This source is subject to the Microsoft Public License (Ms-PL).
//      Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
//      All other rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace System.Windows.Controls
{
    /// <summary>
    /// Provides data for the ErrorClicked event.
    /// </summary>
    /// <QualityBand>Preview</QualityBand>
    public class FocusingInvalidControlEventArgs : EventArgs
    {
        /// <summary>
        /// Initializes a new instance of the ValidationSummaryItemEventArgs class.
        /// </summary>
        /// <param name="item">The selected ValidationSummaryItem</param>
        /// <param name="target">The target is the ValidationSummaryItemSource that will be focused.</param>
        public FocusingInvalidControlEventArgs(ValidationSummaryItem item, ValidationSummaryItemSource target)
        {
            this.Handled = false;
            this.Item = item;
            this.Target = target;
        }

        /// <summary>
        /// Gets or sets a value indicating whether the focusing was handled.
        /// </summary>
        public bool Handled
        {
            get;
            set;
        }

        /// <summary>
        /// Gets the error message string
        /// </summary>
        public ValidationSummaryItem Item
        {
            get;
            private set;
        }

        /// <summary>
        /// Gets or sets the target ValidationSummaryItemSource.  If this value is changed, it will be the new current source 
        /// and will be focused.
        /// </summary>
        public ValidationSummaryItemSource Target
        {
            get;
            set;
        }
    }
}

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 (Senior)
United States United States
Weidong has been an information system professional since 1990. He has a Master's degree in Computer Science, and is currently a MCSD .NET

Comments and Discussions