gpt4 book ai didi

c# - 如何在 WinRT 中的按钮中将文本放置在图像上

转载 作者:太空宇宙 更新时间:2023-11-03 21:21:16 25 4
gpt4 key购买 nike

我想创建一个使用图像作为背景的按钮,我想在背景之上放置我的文本。

我试过这样的:

<Button Style="{StaticResource ImageButtonStyle}">
<StackPanel>
<TextBlock Text="test"></TextBlock>
<Image Source="ms-appx:///Skins/Images/buton.png" Stretch="None" />
</StackPanel>
</Button>

文本不会正确居中。

<Button Style="{StaticResource ImageButtonStyle}">
<StackPanel>
<TextBlock Text="test"></TextBlock>
<Label Padding="0">My Button Text</Label>
</StackPanel>
</Button>

控件 Label 不存在。

我如何在第一次尝试时将我的文字正确居中放置在图像上?你知道更好的方法吗?

最佳答案

您应该使用网格代替堆栈面板。尝试这样的事情:

 <Button >
<Grid>
<Image Source="..." Stretch="None" />
<TextBlock Text="test" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Grid>
</Button>

关于c# - 如何在 WinRT 中的按钮中将文本放置在图像上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30530068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com