Winform Tip#3:Avoiding multiple instances of child forms
Use Singleton pattern on Child Form and change the method of invocation in Parent form. Child form: //Used for singleton pattern static frmChildForm childFor...
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...
Good question! Now, this was a question in one of my sessions at Microsoft Community at Cognizant. We need to use User32 API's to do this stuff. It isn't t...
The opacity property enables you to specify a level of transparency for the form and its controls. See the .NET documentation for Form.Opacity for difference...