Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 WPF 应用程序中,我想上传图像。规格是,
Images
Image
image-1
请你给我一个简单的方法来做到这一点。
In your global Style file you add your images
<BitmapImage x:Key="MyImage" Source="..\MyImage.png" />
Reference the Image by using a Static Resource
<Image Source="{StaticResource ResourceKey=MyImage}" />