Doesn't obey width of container
description
The following XAML:
<Grid x:Name="LayoutRoot"
Background="Transparent">
<controls:Pivot x:Name="MainPivot">
<controls:PivotItem Header="---">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0">
<adRotator:AdRotatorControl x:Name="Ad"
Background="Transparent"
DefaultSettingsFileUri="/Whatever;component/defaultAdSettings.xml"
AdDuplexAppId="--"
PubCenterAdUnitId="---"
PubCenterAppId="---" />
</StackPanel>
</Grid>
</controls:PivotItem>
</controls:Pivot>
</Grid>
Will cause the AdRotator to clip the right side border and few pixels. Setting the MaxWidth of the rotator, the MaxWidth of the containing StackPanel, nothing fixes this other than setting the Margin of the Adrotator to -30,0,0,0 which then clips the lefthand side of things.