我是新手做一个关于用WPF做一个可以做出几个图片直接连线的程序,从网上找到了一个参考。。
<Window x:Class="ShapeConnectors.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:my="clr-namespace:ShapeConnectors"
    Title="Window1" Height="376" Width="801" Loaded="Window_Loaded">然后这段中,当我加入xmlns:my="clr-namespace:ShapeConnectors"的时候出了问题
Namespace or type specified in the Imports 'ShapeConnectors' doesn't contain any public member or cannot be found. Make sure the namespace or the type is defined and contains at least one public member. Make sure the imported element name doesn't use any aliases.
请问该怎么解决呢?