Completed
Last Updated: 17 Aug 2018 08:48 by Dimitar
ADMIN
Hristo
Created on: 16 Aug 2018 09:33
Category: UI Framework
Type: Bug Report
0
FIX. TPF - issue with HTML-like formatting and the <img> tag when passing the image path
How to reproduce: store an image on the file and try to use it this way
string path = @"D:\img.png";
this.radLabel1.Text = "<html><img src=" + path + "><b>Test</b></html>";

Workaround: if possible embed the image in the assembly and use it as a resource
this.radLabel1.Text = "<html><img src=res:_1133506_RadLabelLinkHtmlLike.img.png><b>Test</b></html>";
0 comments