如何使用 Xamarin.iOS 将广告内容分配给 stacklayout
How to assign ad content to stacklayout using Xamarin.iOS
我想将横幅内容分配到堆栈布局中。在我的 MainPage.xaml 中,我使用 x:Name="Advertising".
创建了一个新的堆栈布局
<StackLayout x:Name="Advertising">
</StackLayout>
现在我想将横幅中的内容直接移动到 stacklayout 中。我的 MainPage.xaml.cs 中的 C# 代码是:
AdmobControl admobControl = new AdmobControl()
{
AdUnitId = AppConstants.BannerId
};
Content = new StackLayout()
{
Children = { admobControl }
};
如何使用 x:Name="广告" 将内容 Children = { admobControl }
移动到我的新堆栈布局中?
将其添加到现有 StackLayout
Advertising.Children.Add(admobControl);
我想将横幅内容分配到堆栈布局中。在我的 MainPage.xaml 中,我使用 x:Name="Advertising".
创建了一个新的堆栈布局<StackLayout x:Name="Advertising">
</StackLayout>
现在我想将横幅中的内容直接移动到 stacklayout 中。我的 MainPage.xaml.cs 中的 C# 代码是:
AdmobControl admobControl = new AdmobControl()
{
AdUnitId = AppConstants.BannerId
};
Content = new StackLayout()
{
Children = { admobControl }
};
如何使用 x:Name="广告" 将内容 Children = { admobControl }
移动到我的新堆栈布局中?
将其添加到现有 StackLayout
Advertising.Children.Add(admobControl);