Could not find type or namespace name 'DevExpress' - error

I am trying to use DevExpress with vs2010 and got this error.

It comes from the line private DevExpress.XtraTreeList.TreeList treeList1;

But I already have a link to DevExpress.XtraTreeList.v9.3and there is a copy

The local flag is set to true.

How can I solve this problem?

+3
source share
2 answers

DevExpress.XtraTreeList.v9.3 depends on other builds to run. Make sure you also have the following links:

DevExpress.Data.v9.3
DevExpress.Utils.v9.3
DevExpress.XtraEditors.v9.3

Hope this helps.

+3
source

It is possible that the class does not exist in this version of the assembly. Have you tried using Object Browser to navigate the namespace tree?

0

Source: https://habr.com/ru/post/1735401/


All Articles