无法在 VS 2010 中编译/使用 ObjectListView
我想在 VS 2010 中编码的项目中使用 ObjectListView
。因此我做了以下操作:
- 下载该项目
- 打开两个 ObjectListView.sln 将其转换为 VS2010 项目
- 将其中一个添加到 VS 2010 中的项目文件夹中
- 添加该项目-Assembly 到我的项目
- 添加了命名空间 xmlns:o="clr-namespace:BrightIdeasSoftware; assembly=ObjectListView"
它可以编译,但在我的项目中找不到任何它的类。这意味着进入命名空间后:“
有谁知道我能做什么?
I want to use ObjectListView in a project coded in VS 2010.
Therefore I did the following things:
- Downloaded the project
- Opened both ObjectListView.sln to convert it to a VS2010 project
- Added one of them to my project-folder in VS 2010
- Added the project-assembly to my project
- Added the namespace xmlns:o="clr-namespace:BrightIdeasSoftware;assembly=ObjectListView"
It compiles but it doesn't find any of its classes in my project. That means after entering the namespace: "
Does anyone know what I can do about that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案中的ObjectListView项目缺少“Filters.cs”。它位于目录中,只是没有添加到项目中。
将其添加到项目中,一切都会构建(使用 VS2010 和 ObjectListView.sln)。
编辑:
看起来您正在创建一个 WPF 项目。 ObjectListView 旨在用于 WinForms 应用程序。
The ObjectListView project in the solution is missing "Filters.cs". It's located in the directory, just not added to the project.
Add it to the project, and everything will build (using VS2010, and ObjectListView.sln).
EDIT:
It looks like you're creating a WPF project. ObjectListView is intended to be used in WinForms applications.