Reputation: 2688
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
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