String in Your Language : CultureInfo I18N « Internationalization I18N « VB.Net






String in Your Language

String in Your Language
  
Imports System
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Globalization

Public Class MainClass
    Shared Sub Main()
        Dim myform As Form = New DigitSubstitutionForm()
        Application.Run(myform)
    End Sub
End Class


Public Class DigitSubstitutionForm
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        '
        'DigitSubstitutionForm
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
        Me.ClientSize = New System.Drawing.Size(292, 266)
        Me.Name = "DigitSubstitutionForm"
        Me.Text = "DigitSubstitutionForm"

    End Sub

#End Region


    Private Sub DigitSubstitutionForm_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
        Dim g As Graphics = e.Graphics
        Dim digits As String = "0 1 2 3 4 5 6 7 8 9 0"
        Dim methods As StringDigitSubstitute() = {StringDigitSubstitute.None, StringDigitSubstitute.National, StringDigitSubstitute.Traditional, StringDigitSubstitute.User}

        Dim y As Single
        Dim culture As CultureInfo = New CultureInfo("th-TH")
        Dim format As StringFormat = New StringFormat()
        Dim method As StringDigitSubstitute
        For Each method In methods
            format.SetDigitSubstitution(culture.LCID, method)
            g.DrawString(method.ToString() & ": " & digits, Me.Font, Brushes.Black, 0, y, format)
            y = y + Me.Font.GetHeight(g)
        Next
    End Sub
End Class

           
         
    
  








Related examples in the same category

1.List all Culture InformationList all Culture Information
2.CurrentInfo for es-ES
3.Gets the culture types that pertain to the current CultureInfo object.
4.Gets the CultureInfo that represents the culture used by the current thread.
5.CultureInfo.DisplayName
6.whether the current CultureInfo represents a neutral culture.
7.Tells whether the current CultureInfo is read-only.
8.Gets the CultureInfo that represents the parent culture of the current CultureInfo.
9.Defines the types of culture lists that can be retrieved using the CultureInfo.GetCultures method.
10.Console fallback UI culture
11.Determines the specific cultures that use the Chinese language, and displays the parent culture
12.Comparing and Sorting Data for a Specific Culture
13.Gets the list of calendars that can be used by the culture.
14.Display string representations of numbers for en-us culture
15.Specific culture double value format