Skip to content

Instantly share code, notes, and snippets.

@Avene
Created April 9, 2017 05:58
Show Gist options
  • Save Avene/dcb26a8416e4045ab6b5fb5a41c51d4e to your computer and use it in GitHub Desktop.
Save Avene/dcb26a8416e4045ab6b5fb5a41c51d4e to your computer and use it in GitHub Desktop.
binding image uri on xaml
<Image x:Name="Image"
RelativePanel.AlignHorizontalCenterWithPanel="True"
RelativePanel.AlignTopWithPanel="True"
Stretch="Uniform">
<!--http://stackoverflow.com/questions/37311346/windows-10-uwp-binding-image-url-to-image-source-in-listview-->
<Image.Source>
<BitmapImage UriSource="{x:Bind viewModel.ImageUri, Mode=OneWay}" />
</Image.Source>
</Image>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment