Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法通过 Xaml 将 UserControl 添加到我的主窗口。有人可以说明从完成 UserControl 类到看到它出现在我的主窗口上所需的步骤。
我对此进行了研究,并找到了一些可行的方法来解决它:
1) 使用命名空间和程序集名称在主窗口 xaml 顶部添加引用
2) 在引用标记中添加对窗口 xaml 的引用
3)在主窗口xaml中创建整个用户控件
我更喜欢第二种或第三种方式(或另一种简单的方式),但找不到任何东西来指导我完成这个过程。
创建后将用户控件添加到窗口:
Step1:在xaml中添加对窗口的引用:
xmlns:Views="clr-namespace:WpfApplicationName.Views"
Step2:将视图添加到grid/stackpanel/wrappanel
<Grid> <Views:UsercontrolName/> </Grid>
添加这个并构建您的项目。
您的用户控件将被加载到窗口中。
希望这对您有所帮助。