gpt4 book ai didi

c# - 在 C# 中为游戏创建自定义消息框

转载 作者:太空宇宙 更新时间:2023-11-03 10:51:12 25 4
gpt4 key购买 nike

我想在 c# 中为游戏制作自定义消息框,我所知道的消息框已经内置在 Windows 窗体中,如下所示:

enter image description here

我想在我的游戏中使用它:

enter image description here

也许这不是相关的问题,但是如果程序员使用 Windows 窗体在 C# 中制作游戏,你们怎么看?如果这是一个坏主意,您还有什么其他选择可以单独使用 c# 和 visual studio 创建游戏(单独意味着不使用除此之外的任何软件)

最佳答案

快速而肮脏的解决方案:

只需使用一个您随心所欲设计的普通窗体,并将其命名为AlertDialog。 Visual Studio 内置的 WindowsForm 设计器非常适合这项任务。然后在需要时以模态方式显示它:

class MainForm : Form
{
// ... tons of beautiful game code

public void Alert(string message)
{
AlertDialog dialog;

dialog = new AlertDialog(message);
dialog.ShowDialog(this);
}
}

更多信息:ShowDialog .

关于c# - 在 C# 中为游戏创建自定义消息框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21365735/

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