Set ExceptionHandler on HydrationContext in ApplyPropertiesVisitor.SetTemplate() (#6573)

This commit is contained in:
Tim Barham 2019-06-19 18:31:30 +10:00 коммит произвёл Stephane Delcroix
Родитель d77fccdaa6
Коммит 083b4ea122
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -695,7 +695,7 @@ namespace Xamarin.Forms.Xaml
((IDataTemplate)dt).LoadTemplate = () => {
#pragma warning restore 0612
var cnode = node.Clone();
var context = new HydrationContext { ParentContext = Context, RootElement = Context.RootElement };
var context = new HydrationContext { ParentContext = Context, RootElement = Context.RootElement, ExceptionHandler = Context.ExceptionHandler };
cnode.Accept(new XamlNodeVisitor((n, parent) => n.Parent = parent), node.Parent); //set parents for {StaticResource}
cnode.Accept(new ExpandMarkupsVisitor(context), null);
cnode.Accept(new NamescopingVisitor(context), null);