带有文本和图像的选项卡控件标题 wpf
混合
我有一个选项卡控件,我想放置一个文本并在其上方放置一个图像。我尝试将它们放入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试删除
TextBlock
和Image
控件上的Margin
属性。Try to get rid of the
Margin
properties on bothTextBlock
andImage
controls.