Unicode encoding: French : Unicode Display « GUI Windows Form « C# / C Sharp






Unicode encoding: French

Unicode encoding: French

   using System;
   using System.Drawing;
   using System.Collections;
   using System.ComponentModel;
   using System.Windows.Forms;
   using System.Data;

   public class Unicode : System.Windows.Forms.Form {
      System.Windows.Forms.Label  myLabel = new System.Windows.Forms.Label();

      public Unicode()
      {
         this.SuspendLayout();

         this.myLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 50.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
         this.myLabel.Location = new System.Drawing.Point(20, 20);
         this.myLabel.Size = new System.Drawing.Size(800, 800);

         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(800, 200);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {this.myLabel});
         this.Name = "Unicode";
         this.Text = "Unicode";
         this.Load += new System.EventHandler(this.Unicode_Load);
         this.ResumeLayout(false);
      }

      [STAThread]
      static void Main() 
      {
         Application.Run(new Unicode());
      }

      private void Unicode_Load(object sender, System.EventArgs e)
      {
         // French
         char[] french = { '\u0042', '\u0069', '\u0065', 
                            '\u006E', '\u0076', '\u0065', '\u006E', '\u0075',
                            '\u0065', '\u0020', '\u0061', '\u0075', '\u0020' };


         myLabel.Text = new string(french) + "Unicode" + '\u0021';
      }
   }

           
       








Related examples in the same category

1.Unicode encoding: EnglishUnicode encoding: English
2.Unicode encoding: GermanUnicode encoding: German
3.Unicode encoding: JapaneseUnicode encoding: Japanese
4.Unicode encoding: Unicode encoding:
5.Unicode encoding: RussianUnicode encoding: Russian
6.Unicode encoding: SpanishUnicode encoding: Spanish
7.Unicode encoding: implified ChineseUnicode encoding: implified Chinese