PackageInfoStep.cs :  » Installers-Generators » WiX » Microsoft » Tools » WindowsInstallerXml » Extensions » ClickThrough » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Installers Generators » WiX 
WiX » Microsoft » Tools » WindowsInstallerXml » Extensions » ClickThrough » PackageInfoStep.cs
//-------------------------------------------------------------------------------------------------
// <copyright file="PackageInfoStep.cs" company="Microsoft">
//    Copyright (c) Microsoft Corporation.  All rights reserved.
//    
//    The use and distribution terms for this software are covered by the
//    Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
//    which can be found in the file CPL.TXT at the root of this distribution.
//    By using this software in any fashion, you are agreeing to be bound by
//    the terms of this license.
//    
//    You must not remove this notice, or any other, from this software.
// </copyright>
// 
// <summary>
// Step to get package information for application.
// </summary>
//-------------------------------------------------------------------------------------------------

namespace Microsoft.Tools.WindowsInstallerXml.Extensions.ClickThrough{
    using System;
    using System.ComponentModel;
    using System.Windows.Forms;

    /// <summary>
    /// Step to get package information for application.
    /// </summary>
    public sealed partial class PackageInfoStep : UserControl
    {
        private Fabricator fabricator;
        private bool externalChange;
        private bool descriptionChanged;
        private bool manufacturerChanged;
        private bool nameChanged;
        private bool versionChanged;
        private Version version;

        /// <summary>
        /// Creates a package info setup.
        /// </summary>
        public PackageInfoStep()
        {
            this.InitializeComponent();
        }

        /// <summary>
        /// Event fired any time a change is made to the step's properties.
        /// </summary>
        public event PropertyChangedEventHandler Changed;

        /// <summary>
        /// Gets and sets the fabricator for this step.
        /// </summary>
        /// <value>Fabricator.</value>
        public Fabricator Fabricator
        {
            get { return this.fabricator; }
            set { this.fabricator = value; }
        }

        /// <summary>
        /// Gets and sets the description in this step.
        /// </summary>
        /// <value>String description.</value>
        public string Description
        {
            get
            {
                if (this.descriptionChanged)
                {
                    return this.descriptionTextBox.Text;
                }

                return null;
            }

            set
            {
                this.descriptionChanged = false;

                if (this.descriptionTextBox.Text != value)
                {
                    try
                    {
                        this.externalChange = true;
                        this.descriptionTextBox.Text = value;
                    }
                    finally
                    {
                        this.externalChange = false;
                    }
                }
            }
        }

        /// <summary>
        /// Gets and sets the manufacturer in this step.
        /// </summary>
        /// <value>String manufacturer.</value>
        public string Manufacturer
        {
            get
            {
                if (this.manufacturerChanged)
                {
                    return this.manufacturerTextBox.Text;
                }

                return null;
            }

            set
            {
                this.manufacturerChanged = false;

                if (this.manufacturerTextBox.Text != value)
                {
                    try
                    {
                        this.externalChange = true;
                        this.manufacturerTextBox.Text = value;
                    }
                    finally
                    {
                        this.externalChange = false;
                    }
                }
            }
        }

        /// <summary>
        /// Gets and sets the name in this step.
        /// </summary>
        /// <value>String application name</value>
        public string ApplicationName
        {
            get
            {
                if (this.nameChanged)
                {
                    return this.nameTextBox.Text;
                }

                return null;
            }

            set
            {
                this.nameChanged = false;

                if (this.nameTextBox.Text != value)
                {
                    try
                    {
                        this.externalChange = true;
                        this.nameTextBox.Text = value;
                    }
                    finally
                    {
                        this.externalChange = false;
                    }
                }
            }
        }

        /// <summary>
        /// Gets and sets the version in this step.
        /// </summary>
        /// <value>Application version.</value>
        public Version Version
        {
            get
            {
                if (this.versionChanged)
                {
                    return this.version;
                }

                return null;
            }

            set
            {
                this.versionChanged = false;

                if (this.version != value)
                {
                    try
                    {
                        this.externalChange = true;

                        this.version = value;
                        this.versionTextBox.Text = this.version.ToString();
                    }
                    finally
                    {
                        this.externalChange = false;
                    }
                }
            }
        }

        /// <summary>
        /// Event handler for when the description text box is validated.
        /// </summary>
        /// <param name="sender">The event sender.</param>
        /// <param name="e">The event data.</param>
        private void DescriptionTextBox_Validated(object sender, EventArgs e)
        {
            if (this.descriptionChanged)
            {
                if (this.descriptionTextBox.Text == null || this.descriptionTextBox.Text == String.Empty)
                {
                    this.descriptionChanged = false;
                }

                if (this.Changed != null)
                {
                    this.Changed(this, new PropertyChangedEventArgs("Description"));
                }
            }
        }

        /// <summary>
        /// Event handler for when the manufacturer text box is validated.
        /// </summary>
        /// <param name="sender">The event sender.</param>
        /// <param name="e">The event data.</param>
        private void ManufacturerTextBox_Validated(object sender, EventArgs e)
        {
            if (this.manufacturerChanged)
            {
                if (this.manufacturerTextBox.Text == null || this.manufacturerTextBox.Text == String.Empty)
                {
                    this.manufacturerChanged = false;
                }

                if (this.Changed != null)
                {
                    this.Changed(this, new PropertyChangedEventArgs("Manufacturer"));
                }
            }
        }

        /// <summary>
        /// Event handler for when the name text box is validated.
        /// </summary>
        /// <param name="sender">The event sender.</param>
        /// <param name="e">The event data.</param>
        private void NameTextBox_Validated(object sender, EventArgs e)
        {
            if (this.nameChanged)
            {
                if (this.nameTextBox.Text == null || this.nameTextBox.Text == String.Empty)
                {
                    this.nameChanged = false;
                }

                if (this.Changed != null)
                {
                    this.Changed(this, new PropertyChangedEventArgs("ApplicationName"));
                }
            }
        }

        /// <summary>
        /// Event handler for when the version text box is being validated.
        /// </summary>
        /// <param name="sender">The event sender.</param>
        /// <param name="e">The event data.</param>
        private void VersionTextBox_Validating(object sender, CancelEventArgs e)
        {
            if (this.versionChanged)
            {
                Version version;
                try
                {
                    if (this.versionTextBox.Text != null && this.versionTextBox.Text != String.Empty)
                    {
                        version = new Version(this.versionTextBox.Text);
                    }
                }
                catch (ArgumentException)
                {
                    e.Cancel = true;
                }
                catch (FormatException)
                {
                    e.Cancel = true;
                }
                catch (OverflowException)
                {
                    e.Cancel = true;
                }
                finally
                {
                    if (e.Cancel)
                    {
                        MessageBox.Show("Invalid version.  The version must be of the format of '#.#' or '#.#.#' or '#.#.#.#'.", this.fabricator.Title, MessageBoxButtons.OK, MessageBoxIcon.Error);
                    }
                }
            }
        }

        /// <summary>
        /// Event handler for when the version text box is validated.
        /// </summary>
        /// <param name="sender">The event sender.</param>
        /// <param name="e">The event data.</param>
        private void VersionTextBox_Validated(object sender, EventArgs e)
        {
            if (this.versionChanged)
            {
                if (this.versionTextBox.Text == null || this.versionTextBox.Text == String.Empty)
                {
                    this.versionChanged = false;
                    this.version = null;
                }
                else
                {
                    this.version = new Version(this.versionTextBox.Text);
                }

                if (this.Changed != null)
                {
                    this.Changed(this, new PropertyChangedEventArgs("Version"));
                }
            }
        }

        /// <summary>
        /// Event handler for when any text box is modified.
        /// </summary>
        /// <param name="sender">The event sender.</param>
        /// <param name="e">The event data.</param>
        private void TextBox_TextChanged(object sender, EventArgs e)
        {
            if (!this.externalChange)
            {
                if (sender == this.descriptionTextBox)
                {
                    this.descriptionChanged = true;
                }
                else if (sender == this.nameTextBox)
                {
                    this.nameChanged = true;
                }
                else if (sender == this.manufacturerTextBox)
                {
                    this.manufacturerChanged = true;
                }
                else if (sender == this.versionTextBox)
                {
                    this.versionChanged = true;
                }
            }
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.