使用 AdControl.Suspend() 方法并将 AdControl 可见性更改为 Collapsed 是否有任何限制?

Is there any restrictions about using AdControl.Suspend() method and change AdControl visibility to Collapsed?

我找到的唯一东西是

  1. this(做任何事情来干扰用户查看横幅广告的能力,例如更改 AdControl 的不透明度或在 AdControl 之上放置另一个控件(没有先调用 AdControl.Suspend).
  2. this(您的应用不得做任何干扰或降低其显示的任何广告的可见度、价值或质量的事情。)

我想为用户提供通过按下 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.

你可以做到这一点。我做了一个简单的应用程序,然后使用 Resume() 和 Visibility.Collapsed 将其提交到商店并成功发布。