本地化成功后看不到资源文件
我通过将 Localized
属性设置为 true
并将语言设置为 Default
,将表单 BanksForm
本地化为两种语言> 到法语
。
Visual Studio 生成资源文件并将它们编译到应用程序中。这是我所期望的,但我无法看到我的表单的资源文件,并且它不会生成法语的资源文件。
有人愿意帮忙吗?
I have localized a Form say BanksForm
into two languages by setting the Localizable
property to true
and setting the Language from Default
to French
.
Visual Studio generated the resource files and compiles them into the application. This is what I expected, but I am not able to see the resource file for my form and it does not generate the resource file for French language.
Would anyone please help on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编译后的法语资源将存储在名为
myapp.resources.dll
的 dll 中,该 dll 位于应用程序的 fr 子目录中,例如c:\mysolution\myapp\bin\release\fr\ myapp.resources.dll
The compiled french resources will be stored in a dll named
myapp.resources.dll
located in the fr subdirectory of your app, e.g. asc:\mysolution\myapp\bin\release\fr\myapp.resources.dll