I'm new to WPF. How I can use embedded resource image for an image control in WPF using XAML?
How to assign an embedded image resource to an image control in XAML
possible duplicate of WPF image resources –
Henpeck
- Add Image to your project then set Build Action to Resource
- Add Image to your xaml, e.g.
<Image Source="YourImage.jpg" />
© 2022 - 2024 — McMap. All rights reserved.