找不到来自绑定到ListBox的导入命名空间的枚举

本文关键字:导入 命名空间 枚举 ListBox 绑定 找不到 | 更新日期: 2023-09-27 18:00:16

我花了很多时间研究将枚举绑定到列表框的代码,当:

  1. 与XAML位于同一命名空间中的枚举
  2. 枚举位于以Windows等开头的名称空间中。。。。但是,我有一个枚举,它包含在Microsoft的命名空间中。研究Kinect。Nui:

    <Window.Resources>
        <ObjectDataProvider MethodName="GetValues"
                        ObjectType="{x:Type sys:Enum}"
                        x:Key="Joints">
            <ObjectDataProvider.MethodParameters>
                <x:Type TypeName="JointID" />
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>
    </Window.Resources>
    

    在我设置方法参数类型的那一行,我得到了一个错误

未找到类型"JointID"

我知道这将与设置clr命名空间路径有关:

xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:mic="clr-namespace:Microsoft;assembly=Microsoft.Research.Kinect"

(管理API的程序集是Microsoft.Research.Kinect.dll)但当我这样做的时候,我会得到一个错误:

未定义的CLR命名空间。"clr namespace"URI引用了未包含在程序集中的命名空间"Microsoft"。

该怎么办?

找不到来自绑定到ListBox的导入命名空间的枚举

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:sys="clr-namespace:System;assembly=mscorlib"
        xmlns:mic="clr-namespace:Microsoft;assembly=Microsoft.Research.Kinect"
        xmlns:local="clr-namespace:YOUR NAMESPACE" >
   <Window.Resources>
      <ObjectDataProvider MethodName="GetValues"
                          ObjectType="{x:Type sys:Enum}"
                          x:Key="Joints">
         <ObjectDataProvider.MethodParameters>
            <x:Type Type="{x:Type local:JointID" />
         </ObjectDataProvider.MethodParameters>
      </ObjectDataProvider>
   </Window.Resources>
</Window>

请尝试绑定类型。您必须在顶部添加命名空间,并且枚举必须是公共的。那么我认为你应该能够引用它。

文档解释了您需要使用前缀来指定正确的xml/xaml命名空间。您还需要定义新的命名空间,并确保指定了正确的程序集和.net命名空间。

xmlns:kin="clr-namespace:Microsoft.Research.Kinect.Nui;assembly=Microsoft.Research.Kinect"
<Window.Resources>
    <ObjectDataProvider MethodName="GetValues"
                    ObjectType="{x:Type sys:Enum}"
                    x:Key="Joints">
        <ObjectDataProvider.MethodParameters>
            <x:Type TypeName="kin:JointID" />
        </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>
</Window.Resources>

PS:另请参阅wpf将组合框绑定到不同命名空间中的枚举