请任何人告诉我如何在 xaml 的堆栈面板背景中设置图像?我已经尝试过以下它抛出一个Background
没有属性的错误Image
<Button.ToolTip>
<StackPanel Height="200" Width="200">
<StackPanel Height="30" Width="200" Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Top" >
<StackPanel.Background>
<Image Source="E:\R\watermark9.bmp"></Image>
</StackPanel.Background>
<Image VerticalAlignment="Top" Width="30" Height="30" Source="E:\My Projects\Interconnect_New\Interconnect\Resources\watermark9.bmp" Name="image1" />
<TextBlock FontFamily="Aharoni" FontSize="24" FontWeight="Bold" Foreground="Black" TextWrapping="Wrap" VerticalAlignment="Top" Height="30" HorizontalAlignment="Right" Width="143">
<Run FontFamily="Andalus" FontSize="18" FontWeight="Normal" Text="Hello! Fancy Tip" />
</TextBlock>
</StackPanel>
</StackPanel>
</Button.ToolTip>