如何使用Xamarin.iOS将广告内容分配给stacklayout



我想将横幅内容分配到stacklayout中。在我的MainPage.xaml中,我创建了一个新的堆栈,其中x:Name="广告";。

<StackLayout x:Name="Advertising">
</StackLayout>

现在,我想将内容从我的横幅直接移动到stacklayout中。我的MainPage.xaml.cs中的c#代码是:

AdmobControl admobControl = new AdmobControl()
{
AdUnitId = AppConstants.BannerId
};

Content = new StackLayout()
{
Children = { admobControl }
};

我如何将内容Children = { admobControl }移动到我的新堆栈中,其中x:Name="广告">

将其添加到现有的StackLayout

Advertising.Children.Add(admobControl);

相关内容

  • 没有找到相关文章

最新更新