XAML定義で直接(部分的なページまたはウィンドウであっても)、いつでも独自のUserControlを作成できます。
この例では、SearchClassが[YourProject] .Model名前空間([YourProject]はプロジェクトの名前)で定義されていると想定しています。
<UserControl x:Class="WpfApplication1.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:search="clr-namespace:[YourProject].Model">
<search:SearchClass>
<!--<Grid>
...ANYTHING YOU WANT HERE ! ...
</Grid>-->
</search:SearchClass>
</UserControl>
これで、XAMLまたは分離コードでもUserControlのインスタンスを作成できます(名前空間を正しく宣言することだけを忘れないでください!):
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:ctrls="clr-namespace:WpfApplication1"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid>
<UserControl1 />
</Grid>
</Window>
...そしてこれは私のコードビハインド...
UserControl1 myControl = new UserControl1();