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>
再コンパイル後に修正されました。