namespace PcgTools.PcgToolsResources {
using System;
... some comments
global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Strings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Strings() {
}
问题是最后一行:
internal Strings() {
}
运行应用程序时返回 XAML 错误。上面的文件是一个生成的文件(来自 strings.resx)。
我现在必须在每个资源文件更改为后更改该行:
public Strings() {
}
有谁知道要改变什么才能让它由公共而不是内部自动生成?