IronPython:无法从 System.Windows 导入“矩形”结构
当我尝试从 System.Windows 导入“矩形”结构时,IronPython-Interpreter 声称它无法导入。
由于我使用的是 Visual Studio 的 IronPython 工具,我还可以看到 IntelliSense-DropDown 不显示此结构。
导入这个结构体需要特殊声明吗?
谢谢!
When I try to import the 'Rect'-struct from System.Windows, IronPython-Interpreter claims that it cannot import.
Since I am using the IronPython Tools for Visual Studio, i can also see that the IntelliSense-DropDown does not show this struct.
Is there a need for a special statement for importing this struct?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要执行以下操作:
import clr
clr.AddReference('WindowsBase')
在导入之前加载声明的程序集 Rect。
You probably need to do:
import clr
clr.AddReference('WindowsBase')
to load the assembly Rect is declared in before importing it.