21 references to FlexJustify
Microsoft.Maui (8)
Converters\FlexEnumsConverters.cs (7)
24
if (Enum.TryParse(strValue, true, out
FlexJustify
justify))
27
return
FlexJustify
.Start;
29
return
FlexJustify
.End;
31
return
FlexJustify
.SpaceBetween;
33
return
FlexJustify
.SpaceAround;
36
throw new InvalidOperationException(string.Format("Cannot convert \"{0}\" into {1}", strValue, typeof(
FlexJustify
)));
41
if (value is not
FlexJustify
fj)
Core\IFlexLayout.cs (1)
20
FlexJustify
JustifyContent { get; }
Microsoft.Maui.Controls (12)
Layout\FlexLayout.cs (6)
25
BindableProperty.Create(nameof(JustifyContent), typeof(
FlexJustify
), typeof(FlexLayout),
FlexJustify
.Start,
81
public
FlexJustify
JustifyContent
83
get => (
FlexJustify
)GetValue(JustifyContentProperty);
216
flexLayout._root.JustifyContent = (Flex.Justify)(
FlexJustify
)newValue;
626
item.JustifyContent = (Flex.Justify)(
FlexJustify
)GetValue(JustifyContentProperty);
LegacyLayouts\FlexLayout.cs (6)
23
BindableProperty.Create(nameof(JustifyContent), typeof(
FlexJustify
), typeof(FlexLayout),
FlexJustify
.Start,
83
public
FlexJustify
JustifyContent
85
get => (
FlexJustify
)GetValue(JustifyContentProperty);
204
flexLayout._root.JustifyContent = (Flex.Justify)(
FlexJustify
)newValue;
276
item.JustifyContent = (Flex.Justify)(
FlexJustify
)GetValue(JustifyContentProperty);
Microsoft.Maui.Controls.Build.Tasks (1)
XamlCache.cs (1)
64
{ module.ImportReference(this, ("Microsoft.Maui", "Microsoft.Maui.Converters", "FlexJustifyTypeConverter")), typeof(EnumTypeConverter<Layouts.
FlexJustify
>) },