如何在TabItem中执行scrollViewer

时间:2015-10-13 14:12:31

标签: c# wpf xaml tabcontrol scrollviewer

我正在为带有TabControl的窗口编辑ControlTemplate。 ItemsSource是带有标题和内容的TabItem列表。

这是我的代码:

<TabControl Margin="8,0,8,10" SelectedIndex="0" ItemsSource="{TemplateBinding Licenses}" Template="{DynamicResource TabControlControlTemplate}"/>
    <!--<TabControl.ItemContainerStyle>
        <Style TargetType="TabItem">
            <Setter Property="HeaderTemplate">
                <Setter.Value>
                    <DataTemplate>
                        <TextBlock Text="{TemplateBinding Content}"/>
                    </DataTemplate>
                </Setter.Value>
           </Setter>
        </Style>
    </TabControl.ItemContainerStyle>-->
</TabControl>

我想在TextBlock周围添加一个scrollviewer。

许可证,标头,内容是dependencyProperty,因此只允许使用TemplateBinding。

TextBlock中的H和V ScrollBar可见性冻结了窗口,因此我无法使用它。

我怎么能这样做?

感谢您的帮助

0 个答案:

没有答案