无法使用 Mono.Cairo
我正在尝试使用 MonoDevelop(在 ubuntu 上)开发一个简单的测试应用程序。
我尝试添加对 Mono.Cairo 的引用,但无法在 IDE 中访问命名空间 Mono.Cairo。
我能做些什么?
I'm trying to develop a simple test application with MonoDevelop (On ubuntu).
I've tried adding reference to Mono.Cairo, but I can't access the namespace Mono.Cairo within the IDE.
What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你安装了这个库吗?
sudo apt-get install libmono-cairo2.0-cil
或类似的东西?我不确定 MonoDevelop 是否会自动找到该依赖项,也许即使安装后您也需要指定依赖项。Have you installed the library?
sudo apt-get install libmono-cairo2.0-cil
or something similar? I'm not sure if that dependency is found automatically by MonoDevelop, perhaps you also need to specify the dependency even when installed.可能只是 Monodevelop 尚未正确加载代码完成。尝试调用 cairo 方法并查看它是否可以构建。
有时在终端窗口中运行 MD 很有帮助,因为它通常可以在那里打印有用的调试/警告。
It might just be that Monodevelop hasn't loaded the code-completion properly yet. Try calling a cairo method and see if it builds.
It is sometimes helpful to run MD in a terminal window as it can often print useful debug/warnings there.