vote up 0 vote down star

I have a wpf tab control which I added a scrollviewer to. This is all wrapped into a style which is situated in a resource dictionary.

Now, on the window's xaml side, all I do is set .

I would like to access the control viewer element, as defined in the style as follows:

<Style x:Key="MyTabStyle" TargetType="{x:Type TabControl}">
	<Setter Property="Template">
		<Setter.Value>
			<ControlTemplate TargetType="{x:Type TabControl}">
                 <ScrollViewer />
                        .......

How do I access the scrollviewer which is so deeply nested in the heirarchy?

flag

38% accept rate

1 Answer

vote up 0 vote down

Give it a name (theScrollViewer for instance), and use the FindName method to access it :

ScrollViewer scrollViewer = theTabControl.Template.FindName("theScrollViewer") as ScrollViewer;
link|flag

Your Answer

Get an OpenID
or

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