veereev
veereev

Reputation: 2688

How to set windows mobile image?

I want to set an image in this control how to do this?

<Image x:Name="ghngfhn" HorizontalAlignment="Left" Height="100" Margin="-8,-47,0,-2" VerticalAlignment="Top" Width="100"/>

Upvotes: 0

Views: 32

Answers (1)

niba
niba

Reputation: 2911

In xaml:

<Image Source="Images/EnterName.png" x:Name="ghngfhn" HorizontalAlignment="Left" Height="100" Margin="-8,-47,0,-2" VerticalAlignment="Top" Width="100"/>

Upvotes: 1

Related Questions