forked from yysun/Git-Source-Control-Provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommitTag.xaml
15 lines (15 loc) · 1010 Bytes
/
CommitTag.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<UserControl x:Class="GitScc.UI.CommitTag"
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"
mc:Ignorable="d"
d:DesignHeight="24" d:DesignWidth="180">
<StackPanel Height="26" Orientation="Vertical">
<Border BorderThickness="1" CornerRadius="4" BorderBrush="#B498FF7C" Background="#B498FF7C" HorizontalAlignment="Left">
<TextBlock Padding="10,0" Text="{Binding Text}" FontSize="10"
VerticalAlignment="Center" HorizontalAlignment="Center" ></TextBlock>
</Border>
<Polygon Points="0,0 0.5,1 1,0" Fill="#B498FF7C" Width="6" Height="8" Stretch="Fill" Stroke="#B498FF7C" HorizontalAlignment="Left" Margin="10,0,0,0"/>
</StackPanel>
</UserControl>