如何在 Linux (Ubuntu) 上通过 Powershell 访问 System.Windows.Forms

如何在 Linux (Ubuntu) 上通过 Powershell 访问 System.Windows.Forms

我正在 Ubuntu 上使用 Powershell(通过 Virtual Box)开发 GUI,但我无法使用 System.Windows.Forms:

  • 我安装了Mono-devel,
  • 我搜索了apt-文件搜索 System.Windows.Forms.dll检索12个不同的版本,
  • 我将dll版本4.8复制到脚本目录中,
  • 我运行命令添加类型-AssemblyName System.Windows.Forms
  • 4.8版本告诉
Add-Type: Could not load file or assembly 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Reference assemblies cannot be loaded for execution. (0x80131058)
  • 前面几篇讲述了:
Add-Type could not load file or assembly ‘<Unknown>’ Index not found. (0x80131124)

谢谢

相关内容