add account page layout

This commit is contained in:
2022-02-25 16:33:31 +08:00
parent 6254985c9b
commit fae6d2ce50
56 changed files with 592 additions and 191 deletions

View File

@ -42,12 +42,16 @@ namespace Billing.Views
private readonly Account account;
public Command CheckAccount { get; }
public Command SelectIcon { get; }
public Command SelectCategory { get; }
public event EventHandler<AccountEventArgs> AccountChecked;
public AddAccountPage()
{
CheckAccount = new Command(OnCheckAccount);
SelectIcon = new Command(OnSelectIcon);
SelectCategory = new Command(OnSelectCategory);
InitializeComponent();
}
@ -78,6 +82,16 @@ namespace Billing.Views
}
});
}
private void OnSelectIcon()
{
}
private void OnSelectCategory()
{
}
}
public class AccountEventArgs : EventArgs