我对Visual Studio new 并且没有太多运气让图像正确显示。此PowerSAM中使用此XAML文件代码来生成在任务序列中使用的窗口。
以下是我尝试过的代码,该代码与XAML文件位于同一文件夹中。它不起作用。背景在VS中保持白色,并且在PowerShell中出错:
<Grid.Background>
<ImageBrush ImageSource="Background.jpg"/>
</Grid.Background>
但是,如果我使用完整路径指定 EXACT 位置,那么它可以正常工作并在PowerShell中正常工作。任何帮助,将不胜感激。
我需要它来查找根文件夹中的图像。
答案 0 :(得分:0)
嗯尝试做这样的事情......如果这仍然不起作用,在网格前添加边框
<Grid >
<Image Source="Images/background_top.png" Grid.RowSpan="3" Stretch="None" VerticalAlignment="Top" HorizontalAlignment="Center"/>
<Label Content="Label" Grid.Row="0" Height="28" HorizontalAlignment="Center" Margin="10,10,0,0" Name="testing here" VerticalAlignment="Top" />
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
</Grid>