You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <remarks>Default value is <see cref="NamedSize.Small"/></remarks>
87
+
[TypeConverter(typeof(FontSizeConverter))]
88
+
publicdoubleCancelButtonSize
89
+
{
90
+
get=>(double)GetValue(CancelButtonSizeProperty);
91
+
set=>SetValue(CancelButtonSizeProperty,value);
92
+
}
93
+
94
+
/// <summary>
95
+
/// <see cref="CancelButtonSize"/>
96
+
/// </summary>
97
+
publicstaticreadonlyBindablePropertyCancelButtonSizeProperty=BindableProperty.Create(nameof(CancelButtonSize),typeof(double),typeof(SheetBehavior),defaultValueCreator: b =>Device.GetNamedSize(NamedSize.Small,typeof(Button)));
98
+
99
+
/// <summary>
100
+
/// The size of the label of the action button.
101
+
/// This is a bindable property.
102
+
/// <remarks>Default value is <see cref="NamedSize.Small"/></remarks>
103
+
/// </summary>
104
+
[TypeConverter(typeof(FontSizeConverter))]
105
+
publicdoubleActionButtonSize
106
+
{
107
+
get=>(double)GetValue(ActionButtonSizeProperty);
108
+
set=>SetValue(ActionButtonSizeProperty,value);
109
+
}
110
+
111
+
/// <summary>
112
+
/// <see cref="ActionButtonSize"/>
113
+
/// </summary>
114
+
publicstaticreadonlyBindablePropertyActionButtonSizeProperty=BindableProperty.Create(nameof(ActionButtonSize),typeof(double),typeof(SheetBehavior),defaultValueCreator: b =>Device.GetNamedSize(NamedSize.Small,typeof(Button)));
0 commit comments