using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace FWindSoft.Wpf { public class ResourceKeys { static ResourceKeys() { ErrorTemplateKey = new ComponentResourceKey(typeof(ResourceKeys), "TErrorTemplate"); ErrorTemplateKey2 = new ComponentResourceKey(typeof(ResourceKeys), "TErrorTemplate2"); EmptyErrorTemplateKey = new ComponentResourceKey(typeof(ResourceKeys), "TEmptyErrorTemplateKey"); } public static ResourceKey ErrorTemplateKey { get; private set; } public static ResourceKey ErrorTemplateKey2 { get; private set; } public static ResourceKey EmptyErrorTemplateKey { get; private set; } } }