This repository was archived by the owner on Mar 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserSearchToolTip.xaml
More file actions
30 lines (28 loc) · 1.72 KB
/
UserSearchToolTip.xaml
File metadata and controls
30 lines (28 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<UserControl x:Class="TorchFlow.UserSearchToolTip"
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:TorchFlow"
mc:Ignorable="d" d:DesignWidth="800" Height="49"
Background="Transparent">
<Grid Margin="0,0,0,245">
<Image Name="imagepath1" HorizontalAlignment="Left" Height="25" Margin="35,12,0,-37" VerticalAlignment="Top" Width="24" Source="Icon/youtube.png" >
<Image.OpacityMask>
<ImageBrush ImageSource="Icon/youtube.png"/>
</Image.OpacityMask>
</Image>
<Separator x:Name="separator" HorizontalAlignment="Left" Height="8" Margin="64,20,0,-28" VerticalAlignment="Top" Width="26" RenderTransformOrigin="0.5,0.5" Background="#C9C9C9">
<Separator.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="-90"/>
<TranslateTransform/>
</TransformGroup>
</Separator.RenderTransform>
</Separator>
<Label Style="{DynamicResource Ubuntu}" FontFamily="Ubuntu" FontSize="20" VerticalAlignment="Center" Foreground="White" Name="ContentLabel" Content="ContentLabel" HorizontalAlignment="Left" Height="47" Width="668" Margin="88,7,0,-54"/>
<StackPanel HorizontalAlignment="Left" Height="0" Margin="200,325,0,-325" VerticalAlignment="Top" Width="100"/>
</Grid>
</UserControl>