想在XAML中使用一张图片,得先将其添加到工程中, 方法是:
在项目中双击Resources.resx,选择图像,在添加资源的下拉菜单中选择添加现有文件,然后选择文件,添加图片进来后可以在Resources文件夹下面查看。
然后右击选择图片的属性,将生成操作的属性改为Resource。在项目中引用时添加下列语句:
<Image x:Name="image" HorizontalAlignment="Left" Source="Pack://Application:,,,/Resources/头像.png" Height="142" Margin="20,35,0,0" VerticalAlignment="Top" Width="135"/>
或者添加背景图片,添加下列语句:
<Grid Row="0">
<Grid.Background>
<ImageBrush ImageSource="Pack://Application:,,,/Resources/toolbarbg.png" Stretch="UniformToFill"/>
</Grid.Background>
<Label Content="企业人力资源后台管理系统" FontWeight="Bold" FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="80,5,94,5"></Label>
</Grid>