I have created a Windows Form Application project in C# with some buttons, text, and other things ...
Is it possible to use HTML, JS, CSS for the UI and to interact with the C# ?
Call a function, modify an object, etc .
I have created a Windows Form Application project in C# with some buttons, text, and other things ...
Is it possible to use HTML, JS, CSS for the UI and to interact with the C# ?
Call a function, modify an object, etc .
You can use the Web browser control, which is based on Internet Explorer. It has a COM based API with a managed wrapper, which allows you to do bi-directional communication. There is also CefSharp, which allows embedding of Chromium based browsers in Winforms and WPF applications.