在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}" />
以上是幾種常用的方法,根據具體需求和場景選擇適合的方法。