I have a central window that contains my map. I then added a column that displays results next to my map, but not in the maps view. sort of like a TOCEverything works fine but I am looking to hide this TOC until I run the query. Cant seem to figure this out....I can hide the listbox and turn it on....but cant seem to hide the column itself...Any thoughts? <Grid Grid.Row="2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="275"/>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid Name="MainStackColumn" >
<StackPanel x:Name="MainStack" Height="600" Width="300" Orientation="Vertical" Margin="0,0,0,0" HorizontalAlignment="Left">
<StackPanel x:Name="IdentifyResultsPanelBufferIncidents_Police" Height="300" Width="300" Orientation="Vertical" Margin="0,0,0,0" HorizontalAlignment="Center">
</StackPanel>
<StackPanel x:Name="IdentifyResultsPanelBufferIncidents_Police2" Height="300" Width="300" Orientation="Vertical" Margin="0,0,0,0" HorizontalAlignment="Center">
</StackPanel>
</StackPanel>
</Grid>
<Grid>
<!-- THIS IS WHERE THE MAP IS-->
</Grid>
</Grid>