[Mono-bugs] [Bug 334409] latin chr doesn't work in a winform textbox

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Tue Oct 16 18:29:35 EDT 2007


https://bugzilla.novell.com/show_bug.cgi?id=334409#c1





--- Comment #1 from Eric Petit <surfzoid2002 at yahoo.fr>  2007-10-16 16:29:35 MST ---
if i modifie the test case to display currentinput language, it return a empty
string !!
using System.Windows.Forms;
using System;

public partial class Form1 : Form
    {
                    /// <summary>
        /// Point d'entrée principal de l'application.
        /// </summary>
        //[STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
         //   Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }

        public Form1()
        {
                        TextBox txtlatin = new TextBox();
                        txtlatin.Text = "é doesn't work!";
                        this.Controls.Add(txtlatin);
                        Console.WriteLine( Application.CurrentInputLanguage);
                        Console.WriteLine(
System.Windows.Forms.InputLanguage.CurrentInputLanguage);
        } 
        } 


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list