Sure thing... it's mainly just XAML:
<ui:AdControl
x:Name="adControl"
ApplicationId="..."
AdUnitId="..."
ErrorOccurred="OnAdError"
Height="90"
Width="728" HorizontalAlignment="Center"/>
The only thing I'm doing in code behind , is checking wether the user has bought an AddOn that makes the ads go away. In that case I set visibility of "adControl" to collapsed.
Example:
await ProductCheck.CheckForProducts();
AdContainer.Visibility = !ProductCheck.UserOwnsProducts ? Visibility.Visible : Visibility.Collapsed;
adControl.Opacity = 1f;
Where "ProductCheck" is just a helper method which talks back addons the user owns.
I'm doing this on navigatedTo and right after InitializeComponent().
But never seen those errors on my testing machines... addons purchased or not.