19 references to FlexAlignItems
Microsoft.Maui (6)
Converters\FlexEnumsConverters.cs (5)
137 if (Enum.TryParse(strValue, true, out FlexAlignItems alignitems)) 140 return FlexAlignItems.Start; 142 return FlexAlignItems.End; 145 throw new InvalidOperationException(string.Format("Cannot convert \"{0}\" into {1}", strValue, typeof(FlexAlignItems))); 150 if (value is not FlexAlignItems fai)
Core\IFlexLayout.cs (1)
30 FlexAlignItems AlignItems { get; }
Microsoft.Maui.Controls (12)
Layout\FlexLayout.cs (6)
35 BindableProperty.Create(nameof(AlignItems), typeof(FlexAlignItems), typeof(FlexLayout), FlexAlignItems.Stretch, 95 public FlexAlignItems AlignItems 97 get => (FlexAlignItems)GetValue(AlignItemsProperty); 234 flexLayout._root.AlignItems = (Flex.AlignItems)(FlexAlignItems)newValue; 624 item.AlignItems = (Flex.AlignItems)(FlexAlignItems)GetValue(AlignItemsProperty);
LegacyLayouts\FlexLayout.cs (6)
33 BindableProperty.Create(nameof(AlignItems), typeof(FlexAlignItems), typeof(FlexLayout), FlexAlignItems.Stretch, 95 public FlexAlignItems AlignItems 97 get => (FlexAlignItems)GetValue(AlignItemsProperty); 222 flexLayout._root.AlignItems = (Flex.AlignItems)(FlexAlignItems)newValue; 274 item.AlignItems = (Flex.AlignItems)(FlexAlignItems)GetValue(AlignItemsProperty);
Microsoft.Maui.Controls.Build.Tasks (1)
XamlCache.cs (1)
67 { module.ImportReference(this, ("Microsoft.Maui", "Microsoft.Maui.Converters", "FlexAlignItemsTypeConverter")), typeof(EnumTypeConverter<Layouts.FlexAlignItems>) },