25 references to FlexAlignSelf
Microsoft.Maui (6)
Converters\FlexEnumsConverters.cs (5)
172
if (Enum.TryParse(strValue, true, out
FlexAlignSelf
alignself))
175
return
FlexAlignSelf
.Start;
177
return
FlexAlignSelf
.End;
180
throw new InvalidOperationException(string.Format("Cannot convert \"{0}\" into {1}", strValue, typeof(
FlexAlignSelf
)));
185
if (value is not
FlexAlignSelf
fes)
Core\IFlexLayout.cs (1)
69
FlexAlignSelf
GetAlignSelf(IView view);
Microsoft.Maui.Controls (18)
Layout\FlexLayout.cs (10)
65
BindableProperty.CreateAttached("AlignSelf", typeof(
FlexAlignSelf
), typeof(FlexLayout),
FlexAlignSelf
.Auto,
140
public static
FlexAlignSelf
GetAlignSelf(BindableObject bindable)
141
=> (
FlexAlignSelf
)bindable.GetValue(AlignSelfProperty);
144
public static void SetAlignSelf(BindableObject bindable,
FlexAlignSelf
value)
190
GetFlexItem(bindable).AlignSelf = (Flex.AlignSelf)(
FlexAlignSelf
)newValue;
263
public
FlexAlignSelf
AlignSelf { get; set; }
334
public
FlexAlignSelf
GetAlignSelf(IView view)
338
BindableObject bo => (
FlexAlignSelf
)bo.GetValue(AlignSelfProperty),
343
public void SetAlignSelf(IView view,
FlexAlignSelf
alignSelf)
LegacyLayouts\FlexLayout.cs (8)
66
BindableProperty.CreateAttached("AlignSelf", typeof(
FlexAlignSelf
), typeof(FlexLayout),
FlexAlignSelf
.Auto,
138
public static
FlexAlignSelf
GetAlignSelf(BindableObject bindable)
139
=> (
FlexAlignSelf
)bindable.GetValue(AlignSelfProperty);
141
public static void SetAlignSelf(BindableObject bindable,
FlexAlignSelf
value)
178
GetFlexItem(bindable).AlignSelf = (Flex.AlignSelf)(
FlexAlignSelf
)newValue;
330
item.AlignSelf = (Flex.AlignSelf)(
FlexAlignSelf
)view.GetValue(AlignSelfProperty);
479
item.AlignSelf = (Flex.AlignSelf)(
FlexAlignSelf
)child.GetValue(AlignSelfProperty);
Microsoft.Maui.Controls.Build.Tasks (1)
XamlCache.cs (1)
68
{ module.ImportReference(this, ("Microsoft.Maui", "Microsoft.Maui.Converters", "FlexAlignSelfTypeConverter")), typeof(EnumTypeConverter<Layouts.
FlexAlignSelf
>) },