从代码隐藏访问我的 wpf 应用程序 exe 中的图片
我目前正在 XAML 中访问我的图像并将其设置为图片框,
Source="/SocialShock-WPF-Client;component/Images/blue-bar-replication.png"
我将如何在代码隐藏中执行此操作?
im currently accessing my image in XAML and setting it to a picturebox with
Source="/SocialShock-WPF-Client;component/Images/blue-bar-replication.png"
how would i do this in the codebehind?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的情况下,使用图像名称“blue-bar-replication.png”调用此方法。
映像构建操作应设置为 EmbededResource。
Invoke this method with the image name, "blue-bar-replication.png" in your case.
The image build action should be set to EmbededResource.
完全一样的方式。创建 BitmapImage 对象(传递 Uri 对象与其 构造函数)。然后将 Image 的 Source 属性设置为新创建的 BitmapImage 对象。
Exactly the same way. Create BitmapImage object (pass Uri object with the same path to its constructor). Then set Image's Source property to the newly created BitmapImage object.