I have following markup extension defined in Utils.dll
[assembly: XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "Whatever")]
namespace Whatever
{
public class GetString : MarkupExtension
{
public static ResourceManager ResourceManager { get; set; }
public string Key { get; set; }
public GetString(string key)
{
Key = key;
}
public override object ProvideValue(IServiceProvider serviceProvider)
{
if (ResourceManager == null)
throw new InvalidOperationException();
return ResourceManager.GetString(Key);
}
}
}
It allows me to write code like this: <TextBlock Text="{GetString txt_login}" />
Before I can use this class I have to initialize ResourceManager. I do it at application startup. Everything works fine except I can't use designer - it will always throw InvalidOperationException. Is there a way to initialize this class before designer tries to instantiate it?
if (ResourceManager == null)and becauseResourceManagerisn't initialized, the designer is throwing the exception on the next line..? – jberger Dec 1 '11 at 16:39ResourceManagerbe initialized withinGetString? (Where does it have to be initialized and why?) – jberger Dec 1 '11 at 17:15GetStringclass and knows nothing about main assembly. 2. Main assembly that contains all the controls, and supplies its ResourceManager. It should initializeGetString– Poma Dec 1 '11 at 17:42