forked from blinkbox/Git-Source-Control-Provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BottomToolBar.xaml
20 lines (20 loc) · 1.3 KB
/
BottomToolBar.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<UserControl x:Class="GitUI.UI.BottomToolBar"
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="50" d:DesignWidth="500">
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="ResourceDictionary.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<Grid Background="Gainsboro">
<Button x:Name="btnBack" HorizontalAlignment="Left" Template="{DynamicResource BackButtonControlTemplate}" ToolTip="Back" Content="" Margin="8,0,0,0" IsEnabled="False" />
<TextBox x:Name="txtDirectory" Margin="40,0,200,0" TextWrapping="Wrap" Text="" VerticalAlignment="Center"/>
<Button x:Name="btnGo" HorizontalAlignment="Right" Template="{DynamicResource GoButtonControlTemplate}" ToolTip="Back" Content="" Margin="0,0,168,0" RenderTransformOrigin="18.833,0.46" Click="btnGo_Click" />
</Grid>
</UserControl>