Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在一个按钮中显示一个文本和一个图像(我的意思是一个在顶部,另一个在按钮的底部,所以两者都可以很好地看到)所以我将图像作为背景,将文本作为内容按钮,但它把两者放在同一个空间,所以它们看起来很混合,我怎样才能分离内容和背景?谢谢你的帮助。
AButton可以容纳任何内容。StackPanel在这种情况下,在 Button 中创建一个并添加内容:
Button
StackPanel
<Button> <StackPanel> <TextBlock /> <Image /> </StackPanel> </Button>