BIOS 类似于带有 C++ 的 UI
有谁知道我如何制作一个具有像 BIOS 那样的用户界面的程序?比如API什么的。我见过一些商店的软件使用类似于商店计算机上的 BIOS 的界面来检查产品可用性等。我说的是这样的 UI:
Does anyone know how I can make a program with user interface like BIOS has? Like an API or something. I've seen some shops having software using an interface like BIOS has at the shop's computer(s) for checking product availability etc. I'm talking about a UI like this:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它被称为 NCurses,基本上是一个在文本虚拟终端中创建 UI 界面的库,
这里是一个相当不错的教程关于如何使用它
编辑 windows平台,你需要一个端口库称为 PDCurses。我认为它依赖于 mingw 但我不能确定,因为我还没有使用过它
it is called NCurses, and is basically a library to create UI interfaces in text virtual terminals
Here is a somewhat decent tutorial about how to use it
EDIT for windows platforms, you need a port library called PDCurses. I Think it relies on mingw but i can't tell for sure since i've haven't used it
您可以参考开源UEFI实现EDK II中的NT32模拟器。它包含成熟的 UI 组件。您可以使用 VFR 格式编写表单。查看一些屏幕截图 http://blog .fpmurphy.com/2011/01/edk2-uefi-emulator-on-fedora-14.html。
You can refer to the NT32 emulator in the open source UEFI implementation, EDK II. It has mature UI components included. You can write your form in VFR format. Check out some screen shot at http://blog.fpmurphy.com/2011/01/edk2-uefi-emulator-on-fedora-14.html.