我想開發我的第一個Windows應用商店應用程序。 我正在使用Hub應用程序模板。 我想在我中心頁的第一部分顯示來自URL的圖像:綁定BitmapImage UriSource
<HubSection ... >
<DataTemplate>
<Grid ... >
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
...
</Grid.RowDefinitions>
<Image Name="UserProfileImage" Margin="100, 0, 100, 0" Grid.Row="0" VerticalAlignment="Top">
<Image.Source>
<BitmapImage UriSource="{Binding ImageUrl}"></BitmapImage>
</Image.Source>
</Image>
</Grid>
</DataTemplate>
</HubSection>
在我HubPage.xaml.cs:
[DefaultValue("http://images6.fanpop.com/image/photos/34200000/more-dumb-images-of-philip-j-fry-futurama-34257101-1440-900.png"")]
public string ImageUrl { get; set; }
但沒有顯示。如果我在xaml文件中手動設置了一個圖像url,它可以正常工作...
對我不起作用:( – andrew