
I have an application where some of my tabs have bindings on their IsSelected property to control when they're selected. Unfortunately, I'm seeing cases where multiple tabs appear selected, although I'd expect the selection mechanism to be set-up so that only one tab could be selected at a time.
I'm sending over a project that repros the issue. I guess my key question is, does the IsSelected property on a ribbon tab tie-in with the ribbon's SelectedTab property? If not, is there a way for me to bind to the ribbon's SelectedTab property on a per-tab basis, along the lines of:Thanks,
-Craig
I'm sending over a project that repros the issue. I guess my key question is, does the IsSelected property on a ribbon tab tie-in with the ribbon's SelectedTab property? If not, is there a way for me to bind to the ribbon's SelectedTab property on a per-tab basis, along the lines of:
<Ribbon>
<Tab
Ribbon.SelectedTab={Binding...}
/>
</Ribbon>
-Craig