format BindableProperty & fix a tiny issue about rank page refreshing
This commit is contained in:
@ -11,8 +11,8 @@ namespace Billing.Views
|
||||
{
|
||||
public partial class CategorySelectPage : BillingPage
|
||||
{
|
||||
private static readonly BindableProperty TopCategoriesProperty = BindableProperty.Create(nameof(TopCategories), typeof(List<CategoryGrouping>), typeof(CategorySelectPage));
|
||||
private static readonly BindableProperty SubCategoriesProperty = BindableProperty.Create(nameof(SubCategories), typeof(List<UICategory>), typeof(CategorySelectPage));
|
||||
private static readonly BindableProperty TopCategoriesProperty = Helper.Create<List<CategoryGrouping>, CategorySelectPage>(nameof(TopCategories));
|
||||
private static readonly BindableProperty SubCategoriesProperty = Helper.Create<List<UICategory>, CategorySelectPage>(nameof(SubCategories));
|
||||
|
||||
public List<CategoryGrouping> TopCategories
|
||||
{
|
||||
|
Reference in New Issue
Block a user