I wrote some test codes to use toolkit themes in my gis application. But in runtime map doesn't response to mouse event if i use theme before grid or border etc... when i delete theme or there is no layout control in theme it works fine. here is a sample what i mean :
When using SL Toolkit Theme, does it put your map inside a ScrollViewer? This is not supported, since the scrollviewer intercepts the mouse events needed for panning.
This happens because your theme and your grid is covering the whole map with a background. Then the events are not going to the map. To solve you can either reduce the size of your theme (by not using default stretch alignment) or set a null background. Here is the code with the 2 options (one enough):
<toolkit:TwilightBlueTheme Background="{x:Null}" VerticalAlignment="Top" HorizontalAlignment="Right"> <!-- Now working-->