language version degraded to 9.0

This commit is contained in:
2022-02-25 13:38:42 +08:00
parent 9a6011c3d8
commit e012110b00
32 changed files with 1287 additions and 1262 deletions

View File

@ -1,12 +1,13 @@
using Billing.Themes;
using Xamarin.Forms;
namespace Billing.UI;
public abstract class BillingPage : ContentPage
namespace Billing.UI
{
public BillingPage()
public abstract class BillingPage : ContentPage
{
SetDynamicResource(BackgroundColorProperty, BaseTheme.WindowBackgroundColor);
public BillingPage()
{
SetDynamicResource(BackgroundColorProperty, BaseTheme.WindowBackgroundColor);
}
}
}
}