Class DialogOptions
public class DialogOptions
- Inheritance
-
DialogOptions
- Inherited Members
Properties
Effects
public List<Func<RoutingEffect>> Effects { get; }
Property Value
GetBackdropColor
Factory for backdrop color. It can be configured to return different colors based on the current theme.
public Func<Color> GetBackdropColor { get; set; }
Property Value
Remarks
It can be used like this:
options.GetBackdropColor = () => Application.Current.RequestedTheme switch
{
AppTheme.Light => Color.FromArgb("#80000000"),
AppTheme.Dark => Color.FromArgb("#80ffffff"),
_ => Color.FromArgb("#80808080")
}
GetDivider
public Func<View> GetDivider { get; set; }
Property Value
GetFooter
public DialogOptions.GetFooterDelegate GetFooter { get; set; }
Property Value
GetHeader
public DialogOptions.GetHeaderDelegate GetHeader { get; set; }