Reputation: 2666
Is there any GUI framework that can render a UI I create both as a web app and a desktop app, like on created with Qt or GTK? What I do not want is a "native" app that just displays the HTML UI in a window.
Upvotes: 0
Views: 729
Reputation: 4156
Have a look at Silverlight if you don't mind .NET coding. It is possible to do desktop and web using the same codebase. See example here
Upvotes: 1
Reputation: 38173
You can create native apps for Linux-based OSes easily using Quickly.
Also, in the event that you decide to just create a native app that displays HTML, note that Prism will be a good platform to use.
It will probably save you a lot of time to just have a native app shell that displays the HTML, because there will be no extra coding.
I don't know of any programs that will convert HTML directly into native UI.
Upvotes: 0