带有字符串表的 Windows 窗体

发布于 2024-07-18 20:40:29 字数 219 浏览 12 评论 0原文

我有普通的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光病人 2024-07-25 20:40:29

对于表单和其他 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

紫瑟鸿黎 2024-07-25 20:40:29

您可以将标签的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文