3

有谁知道为什么这无法运行。我在同一个目录中有这个代码和一个名为 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......这是为什么?谢谢您的帮助。

4

1 回答 1

2

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

于 2013-05-11T22:55:21.783 回答