I am having a problem with my group-box. In the group-box i have a grid and in that i have about 20 check-boxes.
The problem is that i need to display value of all the checked check-boxes from the above into another group-box.
I am working in WPF C#.
Which is the event to trigger for the above?
And if the checked check-box is unchecked, the value displayed in 2nd group-box should disappear.
In Wpf you have a Checked Event, UnChecked Event and Indeterminate Event they all use the Generic
RoutedEventHandlerso you should be able to wire them up with a Common Event Handler, check the Senders Name or a Unique Indentifier in theTagProperty and use that to change your Value in the otherGroupBox.Xaml
Xaml.cs
Example of what I mentioned in my Comments:
Xaml
Xaml.cs