InputLangChangeRequestEvent.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / InputLangChangeRequestEvent.cs / 1 / InputLangChangeRequestEvent.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 */ 
namespace System.Windows.Forms {
    using System.Runtime.InteropServices; 
    using System.Diagnostics;
    using System;
    using System.Drawing;
    using System.Globalization; 
    using System.Windows.Forms;
    using System.ComponentModel; 
    using Microsoft.Win32; 

    ///  
    /// 
    ///    
    ///       Provides data for the 
    ///       event. 
    ///    
    ///  
    public class InputLanguageChangingEventArgs : CancelEventArgs { 

        ///  
        /// 
        ///     The requested input language.
        /// 
        private readonly InputLanguage inputLanguage; 

        ///  
        ///  
        ///     The locale of the requested input langugage.
        ///  
        private readonly CultureInfo culture;
        /// 
        /// 
        ///     Set to true if the system default font supports the character 
        ///     set required for the requested input language.
        ///  
        private readonly bool sysCharSet; 

        /** 
         * @deprecated Should use the new constructor instead.
         */
        /// 
        ///  
        /// 
        ///     
        ///       Initializes a new instance of the  class with the 
        ///       specified locale, character set, and acceptance.
        ///     
        /// 
        public InputLanguageChangingEventArgs(CultureInfo culture, bool sysCharSet) {

            this.inputLanguage = System.Windows.Forms.InputLanguage.FromCulture(culture); 
            this.culture = culture;
            this.sysCharSet = sysCharSet; 
        } 

        ///  
        /// 
        ///    
        ///       Initializes a new instance of the  class with the
        ///       specified input language, character set, and acceptance of 
        ///       a language change.
        ///     
        ///  
        public InputLanguageChangingEventArgs(InputLanguage inputLanguage, bool sysCharSet) {
 
            if (inputLanguage == null)
                throw new ArgumentNullException("inputLanguage");

            this.inputLanguage = inputLanguage; 
            this.culture = inputLanguage.Culture;
            this.sysCharSet = sysCharSet; 
        } 

        ///  
        /// 
        ///    
        ///       Gets the requested input language.
        ///     
        /// 
        public InputLanguage InputLanguage { 
            get { 
                return inputLanguage;
            } 
        }

        /// 
        ///  
        ///    
        ///       Gets the locale of the requested input language. 
        ///     
        /// 
        public CultureInfo Culture { 
            get {
                return culture;
            }
        } 

        ///  
        ///  
        ///    
        ///       Gets a value indicating whether the system default font supports the character 
        ///       set required for the requested input language.
        ///    
        /// 
        public bool SysCharSet { 
            get {
                return sysCharSet; 
            } 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 */ 
namespace System.Windows.Forms {
    using System.Runtime.InteropServices; 
    using System.Diagnostics;
    using System;
    using System.Drawing;
    using System.Globalization; 
    using System.Windows.Forms;
    using System.ComponentModel; 
    using Microsoft.Win32; 

    ///  
    /// 
    ///    
    ///       Provides data for the 
    ///       event. 
    ///    
    ///  
    public class InputLanguageChangingEventArgs : CancelEventArgs { 

        ///  
        /// 
        ///     The requested input language.
        /// 
        private readonly InputLanguage inputLanguage; 

        ///  
        ///  
        ///     The locale of the requested input langugage.
        ///  
        private readonly CultureInfo culture;
        /// 
        /// 
        ///     Set to true if the system default font supports the character 
        ///     set required for the requested input language.
        ///  
        private readonly bool sysCharSet; 

        /** 
         * @deprecated Should use the new constructor instead.
         */
        /// 
        ///  
        /// 
        ///     
        ///       Initializes a new instance of the  class with the 
        ///       specified locale, character set, and acceptance.
        ///     
        /// 
        public InputLanguageChangingEventArgs(CultureInfo culture, bool sysCharSet) {

            this.inputLanguage = System.Windows.Forms.InputLanguage.FromCulture(culture); 
            this.culture = culture;
            this.sysCharSet = sysCharSet; 
        } 

        ///  
        /// 
        ///    
        ///       Initializes a new instance of the  class with the
        ///       specified input language, character set, and acceptance of 
        ///       a language change.
        ///     
        ///  
        public InputLanguageChangingEventArgs(InputLanguage inputLanguage, bool sysCharSet) {
 
            if (inputLanguage == null)
                throw new ArgumentNullException("inputLanguage");

            this.inputLanguage = inputLanguage; 
            this.culture = inputLanguage.Culture;
            this.sysCharSet = sysCharSet; 
        } 

        ///  
        /// 
        ///    
        ///       Gets the requested input language.
        ///     
        /// 
        public InputLanguage InputLanguage { 
            get { 
                return inputLanguage;
            } 
        }

        /// 
        ///  
        ///    
        ///       Gets the locale of the requested input language. 
        ///     
        /// 
        public CultureInfo Culture { 
            get {
                return culture;
            }
        } 

        ///  
        ///  
        ///    
        ///       Gets a value indicating whether the system default font supports the character 
        ///       set required for the requested input language.
        ///    
        /// 
        public bool SysCharSet { 
            get {
                return sysCharSet; 
            } 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK