-1

在我的 WPF 应用程序中,我想上传图像。规格是,

  1. PNG 或 JPEG 格式
  2. < 200KB
  3. 重命名图像
  4. 保存到Images应用程序根目录的文件夹中。然后,
  5. 将图像显示到Image名为的控件中image-1

请你给我一个简单的方法来做到这一点。

4

1 回答 1

1
  1. You add your images to a img subfolder
  2. In your global Style file you add your images

    <BitmapImage x:Key="MyImage" Source="..\MyImage.png" />

  3. Reference the Image by using a Static Resource

    <Image Source="{StaticResource ResourceKey=MyImage}" />

于 2012-12-16T14:35:00.197 回答