用户控制到类库中

时间:2014-12-03 13:03:51

标签: c# windows-phone-8.1 portable-class-library

如何将用户控件包含到类库中?或者如何从dll显示自定义视图? Windows Phone 8.1运行时。 enter image description here

1 个答案:

答案 0 :(得分:1)

在您要添加UserControl的页面上(我假设是AdView),在顶部您将看到一些XML命名空间声明。它们看起来像这样:

xmlns:x="using:System"

您需要添加一个如下所示:

xmlns:google="using:GoogleAds"

或者您尝试添加到页面的控件的正确命名空间。

完成后,您可以添加如下控件:

<google:AdView x:Name="adView" otherProperty="Value" />