2024-07-14 09:30:31 -07:00
|
|
|
<UserControl xmlns="https://github.com/avaloniaui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:vm="using:SourceGit.ViewModels"
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
x:Class="SourceGit.Views.WelcomeToolbar"
|
|
|
|
x:DataType="vm:Welcome">
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="4,0,0,0">
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding Clone}" ToolTip.Tip="{DynamicResource Text.Welcome.Clone}">
|
|
|
|
<Path Width="13" Height="13" Data="{StaticResource Icons.Pull}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Click="OpenLocalRepository" ToolTip.Tip="{DynamicResource Text.Welcome.OpenOrInit}">
|
2024-07-15 00:40:15 -07:00
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Folder.Open}" Margin="0,2,0,0"/>
|
2024-07-14 09:30:31 -07:00
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding OpenTerminal}" ToolTip.Tip="{DynamicResource Text.Welcome.OpenTerminal}">
|
|
|
|
<Path Width="13" Height="13" Data="{StaticResource Icons.Terminal}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Rectangle Width="1" Height="16"
|
|
|
|
Margin="4,0"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Fill="{DynamicResource Brush.Border2}"/>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding AddRootNode}" ToolTip.Tip="{DynamicResource Text.Welcome.AddRootFolder}">
|
|
|
|
<Path Width="14" Height="14" Margin="0,2,0,0" Data="{StaticResource Icons.Folder.Add}"/>
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|
|
|
|
|