}
element.IsCreateByXaml = true;
+ element.LineNumber = node.LineNumber;
+ element.LinePosition = node.LinePosition;
}
}
}
}
element.IsCreateByXaml = true;
+ element.LineNumber = (node as ElementNode)?.LineNumber ?? -1;
+ element.LinePosition = (node as ElementNode)?.LinePosition ?? -1;
}
return ret;
}
}
element.IsCreateByXaml = true;
+ element.LineNumber = (node as ElementNode)?.LineNumber ?? -1;
+ element.LinePosition = (node as ElementNode)?.LinePosition ?? -1;
}
}
set { SetValue(BindingContextProperty, value); }
}
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public int LineNumber { get; set; } = -1;
+
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public int LinePosition { get; set; } = -1;
+
void IDynamicResourceHandler.SetDynamicResource(BindableProperty property, string key)
{
SetDynamicResource(property, key, false);