Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: form1.designer.cs 和 form1.resx 的用途
我了解 *.designer 文件与 Windows 窗体/控制文件分组。但不确定附加的 *.resx 文件的相关性和用途是什么。
我可以不创建带有此文件的表单/控件吗?
Windows 窗体设计器通过生成代码来保留设计的窗体。然而,许多控件属性很难在代码中表达。例如,表单的 Icon 属性或 PictureBox 的 Image 属性。许多与它们相关的字节。.resx 文件格式经过优化以存储这些属性值。
它们的第二个用途是能够轻松本地化您的 UI 设计。设计器很容易,它会自动为您支持的每种语言生成 .resx 文件。