IronPython:无法从 System.Windows 导入“矩形”结构

发布于 2024-10-20 03:23:18 字数 188 浏览 2 评论 0原文

当我尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱给你人给你 2024-10-27 03:23:18

您可能需要执行以下操作:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文