I have a map control that is contained in a grid cell. I can't get the map to appear unless I hard code a height/width value:
<my:Map x:Name="Map1"
Background="Coral"
Height="375"
Width="1000"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch">
</my:Map>
The grid has a single column with three rows:
ROW #1
Grid Splitter Control - ROW #2
ROW #3
The map is contained in Row #3. I want the map to fill the entire cell and to resize itself when the size of the browser changes as well as when the grid splitter control changes (grid cell grows/shinks). Can you point me in the right direction to which attributes of the map control I need to set to accomplish this behavior? I've tried setting the Height/Width values to "Auto", but that doesn't work.
Thanks!
Bob