
Use a webpage as the UI in a C# desktop application?
Mar 22, 2011 · I'm building a C# desktop app with a simple UI. Due to my familiarity with HTML/CSS, and a previous web-based iteration of a very similar app, it would be ideal if I …
c# - Best way to deploy Visual Studio application that can run …
85 I wrote a fairly simple application with C#/.NET and can't figure out a good way to publish it. It's a sort of a "tool" that users would only run once, or run every few months.
c# - How to force a .NET 6 Winforms App to use appsettings.json …
Dec 15, 2022 · How can I force a Dotnet6 Desktop Winforms App to use appsettings.json instead of Settings.settings [App.config]? If I create a new desktop application in Visual Studio 2022 to …
c# - Difference between "Windows Forms App" vs "Windows …
Dec 15, 2020 · Windows Forms App (.NET) is the type which makes desktop apps also but it uses .NET Core (Latest Version is .NET Core 5.0) The Windows Control Library project template is …
Windows Form application on Visual Studio Code? - Stack Overflow
Windows Forms is exclusive to the [Desktop] Windows platform. You can certainly not use VSCode for that, not even in Windows, as VSCode doesn't include form designer tools like the …
License for C# desktop application - Stack Overflow
Sep 2, 2010 · How can I add license to my C# desktop application? I need to find a suitable free method to prevent unauthorised users installing my software.
c# - How to use Windows Authentication in Windows Application?
How to use windows authentication (local machine administrator user) in windows application written in C#. Need is whenever user opens my windows application GUI, it should …
Call and consume Web API in winform using C#.net
Sep 22, 2015 · Try to avoid mixing the Web API related code with your application logic. For example let's say you have a product Web API service. Then to use it, first define an …
c# - OAuth 2.0 Authorization for windows desktop application …
Mar 5, 2020 · I am writing a windows desktop application with External Authentication(Google, Facebook) in C#. I'm using HttpListener to allow a user to get Barer token by External …
c# - Which architecture pattern for a desktop application should i …
Jul 5, 2019 · I am going to develop a simple desktop app (a basic crud with a tiny database) in C#, I don't know which pattern to use. In this case, which one would be the right one? Those are …