I am fairly new to WPF. I understand the concept of defining global application resources to which I can refer throughout the application. I see I can define a textblock under application resources but can't seem to see how to refer to it within a window.
In the Application.Resources I have the following code:
<TextBlock x:Key="ABC_Copyright" Background="Beige" Text="Copyright 2016 ABC Company" />
How to I construct a new textblock in any given window that refers back to the "ABC_Copyright" application resource?
Thanks in advance.