Hi,
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
|
|
|
|
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
I tied this in the handler to make it work:
|
||
|
|
|
|
The event generated is bubbling up until it is handled. This xaml portion below triggers
We need to consume the event in
|
||
|
|