complete account page

This commit is contained in:
2022-03-02 17:31:49 +08:00
parent aa38e186c7
commit 51f8e4f2e8
26 changed files with 547 additions and 76 deletions

View File

@ -1,12 +1,37 @@
using System;
using Billing.Languages;
using Billing.Models;
using Billing.UI;
using Xamarin.Forms;
namespace Billing.Views
{
public partial class AddBillPage : BillingPage
{
public AddBillPage()
public Command CheckBill { get; }
private readonly Bill bill;
private readonly DateTime createDate;
public AddBillPage(DateTime date)
{
createDate = date;
CheckBill = new Command(OnCheckBill);
InitializeComponent();
Title = Resource.AddBill;
}
public AddBillPage(Bill bill)
{
this.bill = bill;
CheckBill = new Command(OnCheckBill);
InitializeComponent();
Title = Resource.EditBill;
}
private void OnCheckBill()
{
}
}
}