5 references to FlyoutWidthProperty
Microsoft.Maui.Controls (5)
Shell\Shell.cs (4)
238
public static double GetFlyoutWidth(BindableObject obj) => (double)obj.GetValue(
FlyoutWidthProperty
);
246
public static void SetFlyoutWidth(BindableObject obj, double value) => obj.SetValue(
FlyoutWidthProperty
, value);
1367
get => (double)GetValue(
FlyoutWidthProperty
);
1368
set => SetValue(
FlyoutWidthProperty
, value);
Shell\ShellAppearance.cs (1)
34
Shell.
FlyoutWidthProperty
,