在WPF中添加图片的方法有多种。
<Image Source="path/to/image.png" />
BitmapImage image = new BitmapImage(new Uri("path/to/image.png", UriKind.RelativeOrAbsolute));
Image myImage = new Image();
myImage.Source = image;
<Grid>
<Grid.Background>
<ImageBrush ImageSource="path/to/image.png" />
</Grid.Background>
</Grid>
在App.xaml文件中添加资源:
<Application.Resources>
<BitmapImage x:Key="MyImage" UriSource="path/to/image.png" />
</Application.Resources>
在XAML界面中使用资源:
<Image Source="{StaticResource MyImage}" />
以上是几种常用的方法,根据具体需求和场景选择适合的方法。