fix being unable to apply transforms on grids

This commit is contained in:
bluepilledgreat 2025-01-23 14:28:14 +00:00
parent d8919e5aea
commit 802ae6a613

View File

@ -704,6 +704,10 @@ namespace Bloxstrap.UI.Elements.Bootstrapper
HandleXmlElement_Grid_ColumnDefinitions(grid, dialog, element);
}
else if (element.Name.ToString().StartsWith("Grid."))
{
continue; // ignore others
}
else
{
var uiElement = HandleXml<FrameworkElement>(dialog, element);