uwp アプリに Microsoft 広告を実装しましたが、常に以下のような同じ広告が表示されます。
実装用のコードは次のとおりです。
void MainWindow::showAd()
{
auto adControl = ref new AdControl();
// Set the application id and ad unit id
// The application id and ad unit id can be obtained from Dev Center.
// See "Monetize with Ads" at https ://msdn.microsoft.com/en-us/library/windows/apps/mt170658.aspx
adControl->ApplicationId = L"------";
adControl->AdUnitId = L"------";
// Set the dimensions
adControl->Width = 50;
adControl->Height = 300;
// Add event handlers if you want
adControl->AdRefreshed += ref new EventHandler<RoutedEventArgs^>(this, &OpenGLESPage::OnAdRefreshed);
adControl->VerticalAlignment = Windows::UI::Xaml::VerticalAlignment::Top;
// adControl-? = Windows::UI::Xaml::Visibility::Visible;
// Add the ad control to the page
// auto parent = mPage->Parent;
// parent->Append(adControl);
swapChainPanel->Children->Append(adControl);
}
Microsoft 広告が常に上記のような同じ画像を表示するのはなぜですか? デバッグ モードでこの広告が表示されました。デバッグまたはリリースモードに関連していますか?