我知道有几个问题。
我有以下代码:
Image image = new Image();
UriImageSource imgSource = new UriImageSource();
imgSource.SetBinding( UriImageSource.UriProperty, "ThumbnailUri" );
imgSource.Parent = image;
...
问题是我不知道如何将imgSource
集成到image
对象?
表示如何将imgSource
添加为image
?
我设置imgSource.Parent = image;
但图片在列表视图用户界面中不可见。
我有一个包含如下属性的模型:
Uri ThumbnailUri {get;set;}
我想在列表视图中显示该图像。
答案 0 :(得分:0)
图片具有Source属性
image.Source = imgSource;