user7842865
user7842865

Reputation: 51

C# - HTML and CSS (With WinForms/WPF?)

I understand that this may not be possible, but is there anyway to make a HTML and CSS UI with a C# Backend? I much prefer CSS with UI.

Also I need it to be runnable as a .exe, not from a server or something

Upvotes: 1

Views: 1865

Answers (1)

Mr.JSON
Mr.JSON

Reputation: 21

I'm the maintainer of NanUI project. NanUI is an open source component for .NET / .NET Core Windows Form Applications. It's base on Chromium Embedded Framework. So you can use HTML5, CSS3 and JavaScript to create desktop applications.

Preview

All resources can be embedded in Assembly so you don't need a webserver to host the webpages.

You can pull and try it.

https://github.com/NetDimension/NanUI

Upvotes: 2

Related Questions