在windows presentation foundation中,我有一个名为EquipmentList的自定义UIControl。当我在wpf:
中初始化它时<EquipmentList:EquipmentListControl Name="equipmentList" Margin="0,0,2,2" />
然后我尝试像这样引用它:
InitializeComponent();
this.equipmentList.SetReferenceList(referenceDevices);
我收到错误:
错误1“设备”不包含'equipmentList'的定义,并且没有扩展方法'equipmentList'接受类型'FluentGCS.Windows.Equipment'的第一个参数(你是否缺少using指令或程序集)引用?)
Resharper未显示错误。有什么问题?