I want to load a WPF element from an external file. Example I have a file brush.xaml
like this:
<SolidColorBrush>Black</SolidColorBrush>
And I want to load this brush in my code:
using(FileStream stream = new FileStream("brush.xaml"))
Brush myBrush = XamlReader.Load(stream) as Brush;
How can I do?