我正在尝试为要在 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>
重新编译后修复。