So I created a ResourceDictionary
that looks like this
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<SolidColorBrush x:Key="PrimaryColor" Color="#252525"/>
</ResourceDictionary>
Now my question is how do I get a hold of that key so I can use it for my background
property on my MainWindow?
<Window ...
Background="{DynamicResource PrimaryColor}">