WinRT - 微软广告广告不会出现

时间:2017-01-30 16:34:42

标签: c# .net windows-8 windows-runtime windows-store

我正在尝试将广告添加到我应用的共享页面(.Windows.WindowsPhone项目同时使用。它位于{{1项目)。我尝试使用代码隐藏.Shared文件来实现这一目标,以使其“普及”。这是代码:

.cs

问题是,它只显示... using Microsoft.Advertising.WinRT.UI; ... private void ShowAd() { var ac = new AdControl(); #if WINDOWS_PHONE_APP ac.ApplicationId = "92xxxb"; ac.AdUnitId = "3xxx8"; ac.Width = 320; ac.Height = 50; #else ac.ApplicationId = "38xxx8"; ac.AdUnitId = "3xxx6"; ac.Width = 728; ac.Height = 90; #endif adArea.Children.Add(ac); ac.IsAutoRefreshEnabled = true; ac.HorizontalAlignment = HorizontalAlignment.Center; ac.VerticalAlignment = VerticalAlignment.Center; } 中的黑框。不知道为什么,ID是100%正确的。我做错了什么?

0 个答案:

没有答案