Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to conciliate a couple of things in a WPF application and I can get them to work separately, but not together.

I have a Tabcontrol with several Tabitems, and since I want my app to support multilanguage, I'm using the resources files. I also want the tabitems to have keyboard shortcuts associated to them, so in the resources files, the strings have the "_" symbol. For this, I can make them work ok by doing

<TabItem  Header="{Resx ResxName=FirstWPFApp.Properties.Resources, Key=_tabItemGraficos}">

I'm trying now to add a Tooltip to those Tabitems, but just to the headers, I don't want the tooltip to show in all the elements inside those tabs and I know that for this last part, what I need to do is:

<TabItem>
            <TabItem.Header>
                <TextBlock Text="{Resx ResxName=FirstWPFApp.Properties.Resources, Key=_tabItemGraficos}">
                    <ToolTipService.ToolTip>
                           <TextBlock Text="{Resx ResxName=FirstWPFApp.Properties.Resources, Key=_tabItemGraficosToolTip}" />
                    </ToolTipService.ToolTip>
                </TextBlock>
            </TabItem.Header>

Now, if I would't want the Tabitems to have the keyboard sortcuts, this would work perfectly, but since I do need those keyboard shortcuts, I am now getting the title of the Tabitems showing the underscore symbol, and not working as a shortcut.

Basically, I can't seem to put the Tooltips in the Tabitem headers working along with the keyboard shortcuts. Anyone know a good solution for this problem?

Cheers!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.