format BindableProperty & fix a tiny issue about rank page refreshing
This commit is contained in:
@ -9,7 +9,7 @@ namespace Billing.Views
|
||||
{
|
||||
public partial class IconSelectPage : BillingPage
|
||||
{
|
||||
public static readonly BindableProperty IconsSourceProperty = BindableProperty.Create(nameof(IconsSource), typeof(IList<BillingIcon>), typeof(IconSelectPage));
|
||||
public static readonly BindableProperty IconsSourceProperty = Helper.Create<IList<BillingIcon>, IconSelectPage>(nameof(IconsSource));
|
||||
|
||||
public IList<BillingIcon> IconsSource
|
||||
{
|
||||
@ -103,7 +103,7 @@ namespace Billing.Views
|
||||
|
||||
public class BillingIcon : BindableObject
|
||||
{
|
||||
public static readonly BindableProperty IsCheckedProperty = BindableProperty.Create(nameof(IsChecked), typeof(bool), typeof(BillingIcon));
|
||||
public static readonly BindableProperty IsCheckedProperty = Helper.Create<bool, BillingIcon>(nameof(IsChecked));
|
||||
|
||||
public bool IsChecked
|
||||
{
|
||||
|
Reference in New Issue
Block a user