简体   繁体   English

.resource 文件是否有任何可视化编辑器

[英]Is there any visual editor for .resource files

I've generated binary resource (.resources) file with resgen.exe from txt files.我已经从 txt 文件中使用 resgen.exe 生成了二进制资源 (.resources) 文件。 Do you know if there is any visual editor for already generated resource file.你知道已经生成的资源文件有没有可视化编辑器。 My case is that software was delivered to the client and he wants to update values in the file.我的情况是软件已交付给客户,他想更新文件中的值。

https://docs.microsoft.com/en-us/dotnet/framework/resources/creating-resource-files-for-desktop-apps#resources-in-resources-files https://docs.microsoft.com/en-us/dotnet/framework/resources/creating-resource-files-for-desktop-apps#resources-in-resources-files

Finally I found the tool which allows to edit .resource files, that is Resource.Net.最后我找到了允许编辑 .resource 文件的工具,那就是 Resource.Net。 You can find the app by following to the link https://fishcodelib.com/Resource.htm您可以通过以下链接找到该应用程序https://fishcodelib.com/Resource.htm

Are you delivering .resx files as plain text with the software?您是否使用软件以纯文本形式提供 .resx 文件? .resx files are compiled to assemblies usually and are not available for direct editing with any tool actually. .resx 文件通常被编译为程序集,实际上无法使用任何工具直接编辑。

Your client have to disassemble assembly, make changes to .resx file and compile it back to assembly again.您的客户必须反汇编程序集,对 .resx 文件进行更改,然后再次将其编译回程序集。

You can send plain .resx file to your client, ask them to edit those files (with notepad.exe or any other text editor) and merge client changes back to your sources.您可以将普通的 .resx 文件发送到您的客户端,要求他们编辑这些文件(使用 notepad.exe 或任何其他文本编辑器)并将客户端更改合并回您的源。 Then create a patch and deliver to the client as new version然后创建补丁并作为新版本交付给客户端

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Visual Studio 扩展资源文件 - Visual studio extension resource files 是否有任何Visual Studio代码编辑器控件? - Is there any Visual Studio like code editor control? C#Visual Studio使用资源文件 - C# Visual Studio using resource files 资源 (.resx) 文件是否存在任何性能问题或警告? - Are there any performance issues or caveats with resource (.resx) files? 在Visual Studio编辑器中获得任何字符的逻辑像素宽度? - Obtaining the logical pixel width of any character in visual studio editor? .NET是否有Javascript编辑器控件(例如在Visual Studio中)? - Any Javascript Editor Control for .NET (like in Visual Studio)? Visual Studio 2015 WPF XAML编辑器无法打开XAML文件 - Visual Studio 2015 WPF XAML Editor cannot open XAML files 在Visual Studio中,有什么方法可以在编辑器中以编程方式修改选定的编辑器文本? 代码段? 宏? - Any way in visual studio to programmatically modify selected editor text while in editor? Code snippets? Macros? 在visual studio中编辑xaml文件的任何替代方法? - Any alternatives to editing xaml files in visual studio? 将Visual Studio资源文件放在“资源”以外的文件夹中? - Place Visual Studio resource files in a folder other than 'Resources'?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM