从Image控件WPF获取图片数据
我是 WPF 新手。我正在为 Windows 窗体应用程序编程,并且有具有 Image 属性的 Picture Box。但在 WPF 中,有 Image 而不是 Picture Box。如何获得它的价值?我的意思是图像数据。
I'm new to WPF. I was programming for Windows Forms Applications, and there was Picture Box with Image property. But in WPF there is Image instead of Picture Box. How to get it's value? I mean the image data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Image.Source 财产。
您会在互联网上找到很多关于它的示例。例如下面的代码设置图像源,您可以类似地获取图像
you can do that by using Image.Source property.
You will find a lot of samples on internet about it. For example code below sets image source, you can get the image similarly