About 30,400 results
Open links in new tab
  1. Difference between "Windows Forms App" vs "Windows Forms …

    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. Communicate between two windows forms in C# - Stack Overflow

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

  3. How to use dependency injection in WinForms - Stack Overflow

    Dec 24, 2021 · How to use Dependency Injection (DI) in Windows Forms (WinForms) To use DI in a WinForms .NET 5 or 6 you can do the following steps: Create a WinForms .NET Application …

  4. How to display a "loading" overlay on windows forms while the …

    Sep 22, 2010 · My recommended solution is to set the forms opacity to near invisible say 0.01 before initializing the components. Then create a form with the same size and position and …

  5. c# - Windows Forms Single-File Executable - Stack Overflow

    Mar 6, 2021 · 7 I am developing a Windows Forms project in Visual Studio 2019. My question is that when compiling the project, multiple files are generated, on which the executable is …

  6. How do I change an image on a Button using Windows Forms?

    You can change a image of Windows Form Button using 2 Methods Method 1 for Relative Path

  7. .net - Invoke in Windows Forms - Stack Overflow

    Jul 11, 2011 · Invoke in Windows Forms Asked 14 years, 5 months ago Modified 14 years, 5 months ago Viewed 26k times

  8. c# - Sending Windows key using SendKeys - Stack Overflow

    This allows you to directly send the windows key. This is tested and works: InputSimulator.SimulateModifiedKeyStroke(VirtualKeyCode.LWIN, VirtualKeyCode.VK_E); …

  9. c# - Adding a right click menu to an item - Stack Overflow

    This post assumes that you are competent at using Visual Studio C# forms. This is based on VS2012. Start by simply dragging a ContextMenuStrip onto the form. It will just put it into the …

  10. C# Validating input for textbox on winforms - Stack Overflow

    Jan 18, 2012 · Description There are many ways to validate your TextBox. You can do this on every keystroke, at a later time, or on the Validating event. The Validating event gets fired if …