I have got this method
private async void UCCardHolders_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
{
if (Visibility == Visibility.Visible)
{
Overlay.Visibility = Visibility.Visible;
await GetOrganizationsAsync();
await GetSexTypesAsync();
await GetCitiesAsync();
await GetClientCategoryTypesAsync();
}
}
But I would like to wait for all of them. Is it possible?