add account page layout
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user