有谁知道为什么它无法运行。
我在同一目录中有此代码和一个名为logo.png的文件。
然后我运行此代码,它失败了,说它找不到文件

using System;
using Gtk;

public class Trackbox {

    static int Main() {
        Application.Init();

        //Create the Window
        Window myWin = new Window("TrackBox");
        myWin.SetIconFromFile("logo.png");
        myWin.Resize(200, 100);


        //Create a label and put some text in it.
        Label myLabel = new Label();
        myLabel.Text = "Welcome to TrackBox";

        //Add the label to the form
        myWin.Add(myLabel);

        //Show Everything
        myWin.ShowAll();

        Application.Run();

        return 0;
    }
}


它返回一个错误,指出找不到logo.png ...这是为什么?谢谢您的帮助。

最佳答案

解决方案是将图标放在可执行文件旁边。我虽然图标必须位于根解决方案文件夹中,但实际上它位于可执行文件根目录中。

10-04 23:15