带有字符串表的 Windows 窗体
我有普通的 Windows 窗体 (WinForm) C# (.Net 3.5) 应用程序,该应用程序具有带有文本和菜单等的标签... 该应用程序有时还会向用户显示消息框,并将一些信息写入文件。
我希望用户可以看到的所有信息(通过 GUI 或文件)都将由(一个,如果可能的话)字符串表管理。 我的问题是我找不到如何将所有 GUI 控制器文本移动到资源文件中的字符串表。
谢谢
I have Normal Windows Form (WinForm) C# (.Net 3.5) application, this application has label with text and menus and etc...
also this application display sometimes Message Boxes to the user, and write some information to files.
I would like that all information that the user can see (by GUI or by files) will be manage by (One, if it possible) String Table. My problem is that I can't find how to move all of my GUI controllers texts to a string table in the resources file.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于表单和其他 GUIO 组件,将其 Localized 属性设置为 true。 这将自动将文本移动到资源文件。
对于代码中的字符串文字,资源重构工具是你的朋友
For forms and other GUIO components, set their Localizable property to true. This will automatically move texts to resource files.
For sting literals in your code, the resource refactoring tool is your friend
您可以将标签的 Text 属性绑定到应用程序设置或表单设计器的属性窗口中的字符串资源。
You can bind the Text property of the labels to either an application setting or string resource in the Forms Designer's properties window.