现在我正在尝试学习如何使用 gtk# 和 Xamarin studio,但是在创建 .EXE 之后,我无法使用 .NET 运行它。我对 C# 真的很陌生,我不知道我的程序需要在 .Net 中运行什么,它在 mono 中运行良好,但我想看看它是否可以在没有 mono 的情况下运行。
当我尝试从 cmd 运行 Exe 时,我得到了这个
Unhandled Exception: System.DllNotFoundException: Unable to load DLL 'libgtk-win
32-2.0-0.dll': The specified procedure could not be found. (Exception from HRESU
LT: 0x8007007F)
at Gtk.Application.gtk_init(Int32& argc, IntPtr& argv)
at Gtk.Application.Init()
at Notepad.Notepad.Main(String[] args)
我试图创建的程序只是用 gtk# 制作的记事本的克隆。