The only things that I found are
I want to give users the option to hide ads by pressing a ToggleButton.
private void SettingsButton_HideAdsButtonChecked(object sender, RoutedEventArgs e)
{
bottomBanner.Visibility = Visibility.Visible;
bottomBanner.Resume();
}
private void SettingsButton_HideAdsButtonUnchecked(object sender, RoutedEventArgs e)
{
bottomBanner.Suspend();
bottomBanner.Visibility = Visibility.Collapsed;
}
I want to give users the option to hide ads by pressing a ToggleButton.
You can do this. I did a simple app then submitted it to the Store using Resume() and Visibility.Collapsed and it released successfully.