我想在文件夹中组织我的控件,以便它们不会混乱,但如何通过XAML使用控件?我试过这个无济于事:
xmlns:controls="folder name"
修改
答案 0 :(得分:2)
试试这个:
xmlns:controls="clr-namespace:ProjectName.FolderName"
示例:
命名空间声明:
xmlns:controls="clr-namespace:ContextMenuStyle.MyCustomControls"
使用UserControl1.xaml
文件夹中的控件MyCustomControls
:
<controls:UserControl1 />