format BindableProperty & fix a tiny issue about rank page refreshing

This commit is contained in:
2022-03-11 13:17:00 +08:00
parent 71c1a7f0f1
commit f5f16d43f4
25 changed files with 256 additions and 108 deletions

View File

@@ -16,6 +16,14 @@ namespace Billing.Languages
public static string ConfirmDeleteBill => Text(nameof(ConfirmDeleteBill));
public static string TitleDateFormat => Text(nameof(TitleDateFormat));
public static string DateRangeFormat => Text(nameof(DateRangeFormat));
public static string Custom => Text(nameof(Custom));
public static string Monthly => Text(nameof(Monthly));
public static string Today => Text(nameof(Today));
public static string PastMonth => Text(nameof(PastMonth));
public static string PastQuarter => Text(nameof(PastQuarter));
public static string PastSixMonths => Text(nameof(PastSixMonths));
public static string PastYear => Text(nameof(PastYear));
public static string Total => Text(nameof(Total));
public static string Cash => Text(nameof(Cash));
public static string CreditCard => Text(nameof(CreditCard));
public static string DebitCard => Text(nameof(DebitCard));

View File

@@ -21,6 +21,9 @@
<TitleDateFormat>MM/dd/yyyy</TitleDateFormat>
<DateRangeFormat>MM/dd</DateRangeFormat>
<To>To</To>
<Type>Type</Type>
<Preset>Preset</Preset>
<Custom>Custom</Custom>
<Monthly>Monthly</Monthly>
<Today>Today</Today>
<PastMonth>Past Month</PastMonth>

View File

@@ -21,6 +21,9 @@
<TitleDateFormat>yyyy年MM月dd日</TitleDateFormat>
<DateRangeFormat>MM月dd日</DateRangeFormat>
<To></To>
<Type>类型</Type>
<Preset>预设</Preset>
<Custom>自定义</Custom>
<Monthly>当月</Monthly>
<Today>今日</Today>
<PastMonth>一个月</PastMonth>