6 writes to Width
Microsoft.Maui (1)
Layouts\Flex.cs (1)
390 Width = width;
Microsoft.Maui.Controls (5)
Layout\FlexLayout.cs (2)
449 item.Width = width < 0 ? float.NaN : (float)width; 586 _root.Width = !double.IsPositiveInfinity((width)) ? (float)width : 0;
LegacyLayouts\FlexLayout.cs (3)
337 item.Width = width < 0 ? float.NaN : (float)width; 368 item.Width = ((View)sender).WidthRequest < 0 ? float.NaN : (float)((View)sender).WidthRequest; 490 _root.Width = !double.IsPositiveInfinity((width)) ? (float)width : 0;
6 references to Width
Microsoft.Maui (4)
Layouts\Flex.cs (4)
433 if (Double.IsNaN(Width) || Double.IsNaN(Height)) 437 layout_item(this, Width, Height, inMeasureMode); 473 child.Frame[2] = absolute_size(child.Width, child.Left, child.Right, width); 486 child.Frame[2] = child.Width;
Microsoft.Maui.Controls (2)
Layout\FlexExtensions.cs (2)
23 if (widthConstraint < 0 && !float.IsNaN(parent.Width)) 24 widthConstraint = (double)parent.Width;