开发 Windows 应用程序,无需任何依赖

发布于 2024-12-09 09:18:51 字数 229 浏览 1 评论 0原文

我需要为所有版本的 Windows(XP、Vista、7)创建应用程序,而无需安装 .NET 或其他第三方工具。

应用程序需要异步下载以 json 格式接收的文件,并显示一个可以使用 javascript 与应用程序通信的 html 页面。

有没有办法使用像 Visual Studio 这样的高级 IDE 来做到这一点,但除了应用程序 exe 之外不需要任何东西? 有没有开源替代方案?

谢谢。

I need to create an application for all versions of windows (XP, Vista, 7) without the need to install .NET or other 3rd party tools.

The application needs to download files asynchronous which are received in a json format and display a html page which can communicate with the application using javascript.

Is there a way to do that using an advanced IDE like Visual Studio but without requiring anything besides the application exe?
Are there any open source alternatives?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别闹i 2024-12-16 09:18:51

查看WebBrowser 控件。它基本上是一个可以嵌入到应用程序中的 Internet Explorer 控件,并且它有一个允许进行各种操作的界面。由于 Internet Explorer 始终是 Windows 的一部分,因此无需进一步安装即可始终使用。

使用该控件需要做一些工作。您可以首先查看使用简化的 WebBrowser 控件。它使用 MFC,但您也可以通过纯 C++ 使用该控件。

我使用它的方式是将尽可能多的复杂任务推送到浏览器控件,并使用 JavaScript 运行它们。在 C++ 中异步下载 JSON 很痛苦,但在 JS 中却很简单。因此,您基本上可以在 C++ 和 JavaScript 之间划分逻辑,并找出一些接口(例如,通过使用 DOM)。

Look into the WebBrowser control. It's basically an Internet Explorer control you can embed in your application, and it has an interface that allows all sorts of manipulations. And given Internet Explorer is always a part of windows, it'll always be available without further installations.

Using the control requires some work. You can start by looking at Using the WebBrowser control, simplified. It uses MFC, but you can use the control with plain C++ as well.

The way I'd use it is push as many complicated tasks as possible to the browser control, and run them using JavaScript. A-synchronously downloading JSON is a pain in C++, but a no-brainer in JS. So you can basically divide your logic between C++ and JavaScript, and figure out some interface (by using, say, the DOM).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文