I'm unable to increase the height of the InfoWindow beyond what is seen in the attach picture. It isn't displaying the entire picture in the last row. Is there a max height for this control in Silverlight? I've looked at the example in the Resource Center and we have modeled ours from it. Below is the xaml for the data template. Any help is appreciated.
<DataTemplate x:Key="LocationInfoWindowTemplate">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="30" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Rectangle Grid.Row="0" Grid.ColumnSpan="3" Fill="#00FFFFFF"/>
<Rectangle Grid.Row="1" Grid.ColumnSpan="3" Fill="#DDEAEFF4" />
<Rectangle Grid.Row="2" Grid.ColumnSpan="3" Fill="#00FFFFFF"/>
<Rectangle Grid.Row="3" Grid.ColumnSpan="3" Fill="#DDEAEFF4" />
<Rectangle Grid.Row="4" Grid.ColumnSpan="3" Fill="#00FFFFFF"/>
<Rectangle Grid.Row="5" Grid.ColumnSpan="3" Fill="#DDEAEFF4" />
<TextBlock Text="{Binding [myXY_L]}" Grid.Row="0" Grid.Column="1" Margin="5,0,0,0" />
<TextBlock Text="{Binding [myXY_R]}" Grid.Row="0" Grid.Column="2" Margin="5,0,0,0" />
<Ellipse Grid.Row="0" Grid.Column="4" Margin="70,-10,-5,3" Stroke="LightGray" StrokeThickness="1" Fill="White" Width="16" Height="16" />
<Image Source="Images/GenericDeleteBlackSmall16.png" Grid.Row="0" Grid.Column="4" Margin="70,-10,-5,3" Height="14" Width="14"/>
<TextBlock Text="DMS" Grid.Row="1" HorizontalAlignment="Left" />
<TextBlock Text="{Binding [myDMS_L]}" Grid.Row="1" Grid.Column="1" Margin="5,0,0,0" />
<TextBlock Text="{Binding [myDMS_R]}" Grid.Row="1" Grid.Column="2" Margin="5,0,0,0" />
<TextBlock Text="DDM" Grid.Row="2" HorizontalAlignment="Left" />
<TextBlock Text="{Binding [myDDM_L]}" Grid.Row="2" Grid.Column="1" Margin="5,0,0,0" />
<TextBlock Text="{Binding [myDDM_R]}" Grid.Row="2" Grid.Column="2" Margin="5,0,0,0" />
<TextBlock Text="DD" Grid.Row="3" HorizontalAlignment="Left" />
<TextBlock Text="{Binding [myDD_L]}" Grid.Row="3" Grid.Column="1" Margin="5,0,0,0" />
<TextBlock Text="{Binding [myDD_R]}" Grid.Row="3" Grid.Column="2" Margin="5,0,0,0" />
<Image x:Name="coorImg1b" Grid.Row="4" Grid.RowSpan="2" Grid.Column="0" Grid.ColumnSpan="3" Source="Images/google.png" Height="16" Width="16" Margin="0,2,0,0" MouseLeftButtonDown="coorImg1_MouseLeftButtonDown" ToolTipService.ToolTip="{Binding [tooltip1]}" VerticalAlignment="Top" HorizontalAlignment="Left"/>
<Image x:Name="coorImg2b" Grid.Row="4" Grid.RowSpan="2" Grid.Column="0" Grid.ColumnSpan="3" Source="Images/bing.png" Height="16" Width="16" Margin="19,2,0,0" ToolTipService.ToolTip="{Binding [tooltip2]}" VerticalAlignment="Top" HorizontalAlignment="Left"/>
<Image x:Name="coorImg3b" Grid.Row="4" Grid.RowSpan="2" Grid.Column="0" Grid.ColumnSpan="3" Source="Images/mapquest.png" Height="16" Width="16" Margin="38,2,0,0" ToolTipService.ToolTip="{Binding [tooltip3]}" VerticalAlignment="Top" HorizontalAlignment="Left"/>
</Grid>
</DataTemplate>