filter conditions
This commit is contained in:
@ -8,6 +8,8 @@ namespace Billing.UI
|
||||
{
|
||||
public event EventHandler Loaded;
|
||||
|
||||
private bool loaded;
|
||||
|
||||
public BillingPage()
|
||||
{
|
||||
SetDynamicResource(BackgroundColorProperty, BaseTheme.WindowBackgroundColor);
|
||||
@ -18,5 +20,14 @@ namespace Billing.UI
|
||||
{
|
||||
Loaded?.Invoke(this, EventArgs.Empty);
|
||||
}
|
||||
|
||||
public void TriggerLoad()
|
||||
{
|
||||
if (!loaded)
|
||||
{
|
||||
loaded = true;
|
||||
OnLoaded();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user