如何使用ImageUrl 属性?
How to use the ImageUrl property?
我想用TileView展示产品,但是我给的时候不展示图片url。我该如何克服这个问题?
private void tileView1_ItemCustomize(object sender, DevExpress.XtraGrid.Views.Tile.TileViewItemCustomizeEventArgs e)
{
TileView view = sender as TileView;
string ID = view.GetRowCellValue(e.RowHandle, "ID").ToString();.ToString();
string url = "http://webpage.com/images/"+ ID + ".jpg";
e.Item.Elements[6].ImageUri = url;
}
使用 URI
的简单答案是:
e.Item.Elements[6].ImageUri = new Uri(url);
您的问题可能是必须先下载图像才能让控件使用它。所以你可能必须先做这样的事情:
然后,您的 URI
不是网址,而是本地图像文件(可能在您稍后清理的临时存储中)。
我想用TileView展示产品,但是我给的时候不展示图片url。我该如何克服这个问题?
private void tileView1_ItemCustomize(object sender, DevExpress.XtraGrid.Views.Tile.TileViewItemCustomizeEventArgs e)
{
TileView view = sender as TileView;
string ID = view.GetRowCellValue(e.RowHandle, "ID").ToString();.ToString();
string url = "http://webpage.com/images/"+ ID + ".jpg";
e.Item.Elements[6].ImageUri = url;
}
使用 URI
的简单答案是:
e.Item.Elements[6].ImageUri = new Uri(url);
您的问题可能是必须先下载图像才能让控件使用它。所以你可能必须先做这样的事情:
然后,您的 URI
不是网址,而是本地图像文件(可能在您稍后清理的临时存储中)。