If I have a UserControl hosted in a Window that looks like:
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>
<Grid>
<ContentPresenter Content="{Binding}" />
</Grid>
</Window>
How do I set the Window.Title from the UserControl?
An additional requirement is that the UserControl can pull and set the window title from a static resx file such, i.e. {x:Static p:Resources.MyViewTitle}
Edit
After doing some more research, I think Attached Properties might be the answer. How might I go about implementing a Window.Title property that I can place on any child UserControl, allowing me to set the Window title?