Posts by lucas mazurque • 13 points
2 posts
-
1
votes1
answer476
viewsA: Radio Button on C#
This way you will be able to validate and be able to display the information... //Radio Button Checked if (rbY.Checked) { Model.Tipo_Id = 1; } if (rbZ.Checked) { Model.Tipo_Id = 2; } This Tipo_id is…
-
0
votes1
answer50
viewsQ: How to Make a Help Balloon in WPF?
I am developing a WPF application, and in it, I need each Label to have an Informative Balloon, as example, Name* (full name); Could anyone help me? I would like to do in pure WPF, but if not, there…