在WPF的Tabcontrol的TabItem中插入图像

在WPF的Tabcontrol的TabItem中插入图像

本文介绍了在WPF的Tabcontrol的TabItem中插入图像/图片框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在wpf中的 Tabcontrol TabItem 中插入图像/图片框..
any1 plz可以帮助我...
预先thanx

i want to insert an image/picture box in my TabItem of Tabcontrol in wpf..
can any1 plz help me...
thanx in advance

推荐答案

<tabitem>
    <tabitem.headertemplate>
        <datatemplate>
            <stackpanel orientation="Horizontal">
                <image source="Images/myimage.jpg" width="25" height="25" stretch="Fill" />
                <textblock text="Header Text" margin="5,0,0,0" />
            </stackpanel>
        </datatemplate>
    </tabitem.headertemplate>
    <!-- put tab content here ! -->
</tabitem>



这篇关于在WPF的Tabcontrol的TabItem中插入图像/图片框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 22:09