-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImageControl.xaml
15 lines (13 loc) · 979 Bytes
/
ImageControl.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<UserControl x:Class="SimpleSearchGooglePhoto.ImageControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SimpleSearchGooglePhoto"
mc:Ignorable="d" MouseLeftButtonDown="ImageControl_OnMouseLeftButtonDown"
Height="150" Width="150" Background="Azure" Margin="14 5 0 0" Cursor="Hand">
<Grid Width="150" Height="150" >
<Image Name="imageUrl" Margin="10,17,5,19"/>
<TextBlock Name="textImage" Padding="0.1" Visibility="Collapsed" Text=" Главново " Margin="5,0,0, 0" Background="#5A7BEC" Foreground="#FFFFFF" Height="20" FontSize="16" HorizontalAlignment="Left" VerticalAlignment="Bottom"/>
</Grid>
</UserControl>