Use a Frame element to show the content of the page.
<Window> <Frame Source="/Pages/MyPage.xaml"/> </Window>
Try something like this, where MyPageAssembly points to the assembly where your page resides, and MyPage is the name of the Page.
<Window
x:Class="MyWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:MyPageAssembly="clr-namespace:MyPage;assembly=MyPageAssembly"
Title="ContactsSelector"
Height="300"
Width="300"
>
<Window.Content>
<MyPageAssembly:MyPage />
</Window.Content>
</Window>