5 references to FlyoutHeightProperty
Microsoft.Maui.Controls (5)
Shell\Shell.cs (4)
253
public static double GetFlyoutHeight(BindableObject obj) => (double)obj.GetValue(
FlyoutHeightProperty
);
264
public static void SetFlyoutHeight(BindableObject obj, double value) => obj.SetValue(
FlyoutHeightProperty
, value);
1376
get => (double)GetValue(
FlyoutHeightProperty
);
1377
set => SetValue(
FlyoutHeightProperty
, value);
Shell\ShellAppearance.cs (1)
35
Shell.
FlyoutHeightProperty