gpt4 book ai didi

c# - GTK# 窗口图标不工作

转载 作者:行者123 更新时间:2023-11-30 17:05:32 25 4
gpt4 key购买 nike

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

最佳答案

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

关于c# - GTK# 窗口图标不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16474788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com