format BindableProperty & fix a tiny issue about rank page refreshing
This commit is contained in:
@ -34,8 +34,8 @@ namespace Billing.UI
|
||||
|
||||
public class LongPressGrid : Grid
|
||||
{
|
||||
public static readonly BindableProperty LongCommandProperty = BindableProperty.Create(nameof(LongCommand), typeof(Command), typeof(LongPressGrid));
|
||||
public static readonly BindableProperty LongCommandParameterProperty = BindableProperty.Create(nameof(LongCommandParameter), typeof(object), typeof(LongPressGrid));
|
||||
public static readonly BindableProperty LongCommandProperty = Helper.Create<Command, LongPressGrid>(nameof(LongCommand));
|
||||
public static readonly BindableProperty LongCommandParameterProperty = Helper.Create<object, LongPressGrid>(nameof(LongCommandParameter));
|
||||
|
||||
public Command LongCommand
|
||||
{
|
||||
|
Reference in New Issue
Block a user