我有一个 WinForms 应用程序,我目前正在其中实现翻译引擎。到目前为止,我拥有的是一堆遵循以下语法的文本文档:
messages.manualupdate="There is a manual update available for ProgName.\n\nDo you want to update to version {0}.{1}.{2}{3}?"
messages.errorcopy="Clicking OK will copy the error so you can paste it elsewhere!"
messages.error="Error"
messages.notsupported.title="Unsupported client"
messages.notsupported.message="This version is no long supported. Please wait for an update."
我有很多不同语言的,例如:
messages.manualupdate="é disponibile un'aggiornamento manuale del programma ProgName.\n\nVuoi aggiornare alla versione {0}.{1}.{2}{3}?"
messages.errorcopy="Cliccando OK eseguirete una copia degli errori visualizzati"
messages.error="Error"
messages.notsupported.title="Client non supportato"
messages.notsupported.message="Questa versione non è utilizzabile al momento. attendi il prossimo aggiornamento!"
然后我将其解析为DynamicObject
我可以访问的language.messages.notsupported.error
. 我想知道的是我是否可以以某种方式链接表单上的所有控件以在创建时使用来自动态对象的变量。例如,我的表单上有一个按钮,我希望在其中包含文本“错误”。在表单显示之前,我将language
变量设置为用户选择的语言,然后当表单显示时,它只是从language
. 有没有办法在设计器中执行此操作,而不必编写在 Forms 构造函数中调用的方法,因为在我看来,将所有按钮文本设置为一个值然后全部更改它们有点浪费当表单加载时。我正在寻找一种绑定,但要控制 Text 参数。
有人有想法么?