Winform Tip#5: Programmatically maximize or minimize a form
Use the form's WindowState property. To minimize: this.WindowState = System.Windows.Forms.FormWindowState.Minimized; To maximize: this.WindowState = S...
Use the form's WindowState property. To minimize: this.WindowState = System.Windows.Forms.FormWindowState.Minimized; To maximize: this.WindowState = S...
Best way to deploy is by using ClickOnce deployment. This allows user to get regular updates, patches to the product while conforming to the security standar...
Use Singleton pattern on Child Form and change the method of invocation in Parent form. Child form: //Used for singleton pattern static frmChildForm childFor...
Being a hardcore C developer, I always doubted whether JIT is actually performance centric or not. But guys! It is awesome. Kudos to Microsoft for this wonde...
An easier way to control properties of multiple controls is to place all the controls into a single GroupBox and then use the GroupBox properties property to...