-
Notifications
You must be signed in to change notification settings - Fork 693
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Localization does not work #236
Comments
By setting the localization, do you mean for button text |
Hi Wagnerp, |
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 |
@waleedmakarem You can alter certain strings within |
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
|
@waleedmakarem Does this help? Krypton-Suite/Standard-Toolkit#851 |
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
The text was updated successfully, but these errors were encountered: