Is there an event that an be used to determine when a tabcontrol's selected tab changes in WPF?
I have tried using TabControl.SelectionChanged - but it is getting fired many times when a child's selection within a tab is changed.
Thanks! Jon
|
Is there an event that an be used to determine when a tabcontrol's selected tab changes in WPF? I have tried using TabControl.SelectionChanged - but it is getting fired many times when a child's selection within a tab is changed. Thanks! Jon
| ||||
|
feedback
|
|
I tied this in the handler to make it work:
| |||
|
feedback
|
|
You could still use that event. Just check that the sender argument is the control you actually care about and if so, run the event code. | |||
|
feedback
|
|
If you set the x:Name property to each TabItem as:
Then you can access to each tabitem at the event:
| |||
|
feedback
|
|
The event generated is bubbling up until it is handled. This xaml portion below triggers
We need to consume the event in
| |||
|
feedback
|
|
This code seems to work:
| |||
|
feedback
|
|
That is the correct event. Maybe it's not wired up correctly?
in the codebehind....
if I set a breakpoint on the i = 34 line, it ONLY breaks when i change tabs, even when the tabs have child elements and one of them is selected. | |||
|
feedback
|