This blog post covers the basics, including the selection of theme at run time.
You can share themes between applications and have each one use a different one.
I didn't think you could mix themes within the same application, but marc40000 has found out you can:
<Button Height="23" Margin="81,65,122,0" Name="button1" VerticalAlignment="Top">
<Button.Resources>
<ResourceDictionary Source="ShinyBlue.xaml"/>
</Button.Resources>
Button
</Button>
<Button Height="23" HorizontalAlignment="Right" Margin="0,0,38,35" Name="button2" VerticalAlignment="Bottom" Width="75">Button</Button>
put the resourcedirectory to the controls you want to theme instead of doing it globaly in the app.xaml
There's even more information from this MSDN page and this one