您始终可以直接在 XAML 定义中创建自己的用户控件(即使它们是部分页面或窗口)。
在此示例中,我假设您的 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>
现在您可以创建 UserControl 的实例,甚至在 XAML 或代码隐藏中(请记住仅正确声明命名空间!):
<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();