Using Tag property of the controls in WindowsFormsApplication.
This is the basic concept which all knows. But this will be very useful for the newly coming people to know about this property.
Here is the sample application to understand the Tag property very clearly.
Tag property is the property where you can set the value for the controls which will not be visible to the users. Here for the introduction purpose I kept the values. For the people who are new to DotNet they can use this and they can extend this so that they will get practice and learn more.
Working with Tag Property of Controls in Windows Forms.
This is the basic concept which all knows. But this will be very useful for the newly coming people to know about this property.
Here is the sample application to understand the Tag property very clearly.
Here windows form with some checkboxes and radio buttons and other label controls. This is the sample course registration form which will be useful for the small organizations. This is the part of an application which is developed for the small organizations.
Here for each and every checkbox and radio buttons you are able to see the values on the right of it which indicates they are the Amount charging for the courses. Now whenever the user selects the courses he want then automatically the amount will be indicating to the user in the Amount Field above.
When user deselects the courses then automatically the Amount will change, according to the selected courses the amount will display dynamically. For all these I used "Tag" property.
Tag property is the property where you can set the value for the controls which will not be visible to the users. Here for the introduction purpose I kept the values. For the people who are new to DotNet they can use this and they can extend this so that they will get practice and learn more.
Here i attached the sample form with code check this. Here you can see the code where you can also find how to bind the one event procedure to multiple controls.