Expression Blend: Getting error “XXX” does not exist in the namespace “XXX”, but not in VS2008

后端 未结 5 2373
栀梦
栀梦 2020-12-24 02:13

I am trying to use Blend 3.0 to edit a project that contains some WPF controls. This project already compiles and runs fine from Visual Studio 2008.

In Blend however

5条回答
  •  借酒劲吻你
    2020-12-24 02:31

    I think that Blend uses the default config/platform defined in the project file. You should be able to fix this by editing it with a text file. If you look in your .csproj file, you should see something like this:

    
        Debug
        AnyCPU
        ...
    

    Change that AnyCPU to x86 and it should work the way you expect.

提交回复
热议问题