Say that I have the following piece of XAML:
<Window>
<StackPanel Orientation="Horizontal">
<Label>Phone:</Label>
<TextBlock Text={Binding PhoneNumber}"/>
</StackPanel>
</Window>
I would like to reuse this as the content of a ContextMenu. What is the best way to do that?