带有文本和图像的选项卡控件标题 wpf

发布于 2024-12-25 09:33:47 字数 694 浏览 0 评论 0原文

混合
我有一个选项卡控件,我想放置一个文本并在其上方放置一个图像。我尝试将它们放入 StackPanel 中,但这太大了,当我调整它的大小时,图像就会消失。当我单击图像上的 xaml 代码时,我只看到一个空框,但图像不在其中。我不知道发生了什么,我只使用 WPF 几天......
这是我的代码:

  <TabItem.Header>
            <StackPanel Orientation="Horizontal" Height="60" Width="106">
                    <TextBlock Text=" FirstTab" FontFamily="Arial" FontSize="14" FontWeight="Bold" Margin="12,15,0,12" Height="18" Width="84" />
                    <Image Source="line.PNG"  Margin="-80,30,663,74" Height="47" Width="74" />
                </StackPanel>
            </TabItem.Header>

我尝试使用 StackPanel Orientation=“Vertical”,但同样的事情正在发生......

谢谢

Hy
I have a tab control and I want to put a Text and above it an image. I tried to put them in a StackPanel, but this is too big and when I resize it the image diseapears. When I click on the xaml code on the image I see only an empty box, but the image is not in it. I do not know what is hapenning, I use WPF only for a few days...
Here is my code:

  <TabItem.Header>
            <StackPanel Orientation="Horizontal" Height="60" Width="106">
                    <TextBlock Text=" FirstTab" FontFamily="Arial" FontSize="14" FontWeight="Bold" Margin="12,15,0,12" Height="18" Width="84" />
                    <Image Source="line.PNG"  Margin="-80,30,663,74" Height="47" Width="74" />
                </StackPanel>
            </TabItem.Header>

I tried to use StackPanel Orientation= "Vertical", but the same thing is hapenning....

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

违心° 2025-01-01 09:33:47

尝试删除 TextBlockImage 控件上的 Margin 属性。

Try to get rid of the Margin properties on both TextBlock and Image controls.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文