8 writes to AlignSelf
Microsoft.Maui.Controls (8)
Layout\FlexLayout.cs (4)
190 GetFlexItem(bindable).AlignSelf = (Flex.AlignSelf)(FlexAlignSelf)newValue; 442 item.AlignSelf = (Flex.AlignSelf)GetAlignSelf(view); 679 item.AlignSelf = Flex.AlignSelf.Start; 694 item.AlignSelf = (Flex.AlignSelf)GetAlignSelf(child);
LegacyLayouts\FlexLayout.cs (4)
178 GetFlexItem(bindable).AlignSelf = (Flex.AlignSelf)(FlexAlignSelf)newValue; 330 item.AlignSelf = (Flex.AlignSelf)(FlexAlignSelf)view.GetValue(AlignSelfProperty); 454 item.AlignSelf = Flex.AlignSelf.Start; 479 item.AlignSelf = (Flex.AlignSelf)(FlexAlignSelf)child.GetValue(AlignSelfProperty);
2 references to AlignSelf
Microsoft.Maui (2)
Layouts\Flex.cs (2)
904 child.AlignSelf == AlignSelf.Auto ? parent.AlignItems : (AlignItems)child.AlignSelf;