什么是此命名空间ITypeOfObjectsBoundToListBox?无法找到它

时间:2015-06-04 21:19:12

标签: c# .net winforms listbox listboxitem

我从这里接受了我的问题的答案: 我想要做的是为列表框中的每个项目设置不同的工具提示文本。

ITypeOfObjectsBoundToListBox

这是我尝试使用的链接中另一个答案的方法:

private ITypeOfObjectsBoundToListBox DetermineHoveredItem()
        {
            Point screenPosition = ListBox.MousePosition;
            Point listBoxClientAreaPosition = listBox1.PointToClient(screenPosition);

            int hoveredIndex = listBox1.IndexFromPoint(listBoxClientAreaPosition);
            if (hoveredIndex != -1)
                return listBox1.Items[hoveredIndex] as ITypeOfObjectsBoundToListBox;
            else
                return null;
        }

但是ITypeOfObjectsBoundToListBox不存在。

错误:错误2类型或命名空间名称' ITypeOfObjectsBoundToListBox'找不到(你错过了使用指令或汇编引用吗?)

0 个答案:

没有答案