2

我正在尝试为要在 XAML 中使用的类创建一个密钥,但 Visual Studio 11 说不存在这样的类。

脚步:

我在我的程序命名空间中创建了一个类:

namespace Test {
    public class PointCollectionConverter : System.Windows.Data.IValueConverter....

我在 MainWindow.xaml 中添加了一个本地命名空间引用

xmlns:local="clr-namespace:GeometryTest"

我尝试将类添加为资源:

<Window.Resources>
      <local:PointCollectionConverter x:Key="pointCollectionConverter"/>
</Window.Resources>

重新编译后修复。

4

1 回答 1

3

命名空间是Test,你使用GeometryTest? 这里有点不对劲。

怎么样:

xmlns:local="clr-namespace:Test"
于 2012-04-22T02:23:44.930 回答