vote up 0 vote down star

Hi,

I've been playing with WPF and I'm not sure what I'm trying to do is possible. So is it possible to have a usercontrol describing a tabitem? I've tried but without success.

Right now I use user controls for the content but I would like to change that to be more generic.

flag

71% accept rate
I'm not entirely sure what you are trying to do, can you be more specific? – chupacabra May 27 at 20:09

1 Answer

vote up 0 vote down check

You can:

1) Place a UserControl inside a TabItem:

<TabControl>
    <TabItem>
        <local:MyUserControl/>
    </TabItem>
</TabControl>

2) Inherit from TabItem rather than UserControl:

public class MyTabItem : TabItem { ... }

<TabControl>
    <local:MyTabItem/>
</TabControl>

HTH, Kent

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.