使用项目中文件夹的自定义控件?

时间:2013-11-30 19:51:34

标签: wpf controls directory

我想在文件夹中组织我的控件,以便它们不会混乱,但如何通过XAML使用控件?我试过这个无济于事:

xmlns:controls="folder name"

修改 enter image description here

1 个答案:

答案 0 :(得分:2)

试试这个:

xmlns:controls="clr-namespace:ProjectName.FolderName"

示例:

enter image description here

命名空间声明:

xmlns:controls="clr-namespace:ContextMenuStyle.MyCustomControls"

使用UserControl1.xaml文件夹中的控件MyCustomControls

<controls:UserControl1 />