在 WPF 中显示图像数据网格模板字段
如何使用 LINQ to SQL 将图像(存储在 SQL 数据库中)显示到 WPF 中数据网格模板字段中的图像控件
How to display images (stored in SQL database) to an image control in template field of datagrid in WPF using LINQ to SQL
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Linq 生成的类是部分类。这允许您扩展它们。因此,假设您的链接类具有以下属性:
您可以使用这样的属性添加到分部类
然后在您的模板控件的模板中,您只需添加类似以下内容:
The classes generated by Linq are Partial. This allows you to extend them. So, assuming that you're link class has a property along the following lines:
you can add to the partial class with a property like this
Then in the template for you're template control you simply put something like: