Is there a plan to implement ParserContext?
Posted: 15 Nov 2021, 11:18
I want to load image resource from a mod path, so I use flow code, which is run success in Blend.
But ParserContext is not support in Noesis. Is there a plan to implement ParserContext?
Best Regards
Code: Select all
var pc = new ParserContext
{
BaseUri = new Uri(modPath + mod + "/", UriKind.Absolute)
};
var viewComponent = XamlReader.Parse(xaml, pc) as FrameworkElement;
return viewComponent;
Best Regards