ComponentFactory / Krypton

Krypton WinForms components for .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Localization does not work

waleedmakarem opened this issue · comments

I am trying to apply localization to it, but it does not work. I have tried normal button and kryptonbutton at same form, and applied below code. Normal button will localize , but kryptonbutton does not . Does KryptonToolkit support localization ? Below is my code:
NB. Windows set to Localizable

For Each c As Control In Me.Controls
Dim crmLang As ComponentResourceManager = New ComponentResourceManager(GetType(Form1))
crmLang.ApplyResources(c, c.Name, New CultureInfo(Language)) 'Set desired language
Next c

Hi @waleedmakarem

By setting the localization, do you mean for button text

Hi Wagnerp,
Yes, I cannot localize KryptonButton Text property , though I can localize default WinformButton.

Hi @waleedmakarem

Do you mean no RTL support or something else?

I mean to have different language support, eg English , French , German. Normally below code should localize all winform controls , but does not work for Krypton controls

For Each c As Control In Me.Controls
Dim resources As ComponentResourceManager = New ComponentResourceManager(GetType(Form1))
resources.ApplyResources(c, c.Name, New CultureInfo(lang))
Next c

@waleedmakarem You can alter certain strings within KryptonManager

No. I need to localize the entire winforms. with below code. it works for normal winform button control, eg. But if i used kryptonButton, it does not work. If you need to share project. I can.

Private Sub btnchangetoEnglish_Click(sender As Object, e As EventArgs) Handles btnchangetoEnglish.Click
ChangeLanguage("en")
End Sub

Private Sub ChangeLanguage(ByVal lang As String)
    For Each c As Control In Me.Controls
        Dim resources As ComponentResourceManager = New ComponentResourceManager(GetType(Form1))
        resources.ApplyResources(c, c.Name, New CultureInfo(lang))
    Next c
End Sub