About 458,000 results
Open links in new tab
  1. 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 …

  2. c# - Can't use System.Windows.Forms - Stack Overflow

    Mar 10, 2012 · The answer was also useful for me (+1) but is it possible to add system.windows.forms once forever in any c# program? Using your answer we need to do this …

  3. Communicate between two windows forms in C# - Stack Overflow

    Communicate between two windows forms in C# Asked 16 years ago Modified 2 years, 3 months ago Viewed 93k times

  4. c# - How to set focus to a control in a Windows Forms application ...

    Oct 30, 2010 · In a Windows Forms application, when do I write the code to set the focus to a control both while the application is launched and subsequently after I call a function? For …

  5. Changing the default icon in a Windows Forms application

    I need to change the icon in the application I am working on. But simply browsing for other icons from the project property tab -> Application -> Icon, it is not getting the icons stored on the des...

  6. c# - Disable resizing of a Windows Forms form - Stack Overflow

    Nov 1, 2011 · How do I turn off the user's ability to resize a Windows Forms form? I'm having it resize itself on a click.

  7. How would you implement MVC in a Windows Forms application?

    May 4, 2015 · Second, you can use an MVC framework designed for Windows Forms. The first is simple to start doing, but the further in you get, the more complex it is. I'd suggest looking for a …

  8. Reference Windows Forms in .NET 8 project possible?

    Mar 6, 2024 · 8 This question already has answers here: Use Windows Forms in a .Net Core Class Library - .NET Core Control Library (5 answers)

  9. C# Windows Form: On Close Do [Process] - Stack Overflow

    May 25, 2010 · In this event, you can still access any controls and variables in the form's class. You can also cancel the form close by setting e.Cancel = true; (where e is a …

  10. How to open a new window in Windows Forms in .NET?

    Apr 23, 2015 · 40 In Visual Studio, right-click on your project and select Add->Windows Form. That will give you a new form to work with. Lay it out how you want. Then you can launch the …