2024-02-05 23:08:37 -08: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:c="using:SourceGit.Converters"
|
|
|
|
xmlns:vm="using:SourceGit.ViewModels"
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
x:Class="SourceGit.Views.DeleteRepositoryNode"
|
|
|
|
x:DataType="vm:DeleteRepositoryNode">
|
|
|
|
<StackPanel Orientation="Vertical" Margin="8,0,0,0">
|
|
|
|
<TextBlock FontSize="18"
|
2024-04-02 01:23:47 -07:00
|
|
|
Classes="bold"
|
|
|
|
Text="{DynamicResource Text.DeleteRepositoryNode.TitleForGroup}"
|
|
|
|
IsVisible="{Binding !Node.IsRepository}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
<TextBlock FontSize="18"
|
2024-04-02 01:23:47 -07:00
|
|
|
Classes="bold"
|
|
|
|
Text="{DynamicResource Text.DeleteRepositoryNode.TitleForRepository}"
|
|
|
|
IsVisible="{Binding Node.IsRepository}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
|
|
|
|
<Grid Margin="0,16,8,0" Height="28" ColumnDefinitions="120,*">
|
|
|
|
<TextBlock Grid.Column="0"
|
2024-04-02 01:23:47 -07:00
|
|
|
HorizontalAlignment="Right" VerticalAlignment="Center"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Text="{DynamicResource Text.DeleteRepositoryNode.Target}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
<StackPanel Grid.Column="1" Orientation="Horizontal">
|
|
|
|
<Path Width="12" Height="12" Margin="0,0,8,0"
|
2024-04-02 01:23:47 -07:00
|
|
|
Fill="{Binding Node.Bookmark, Converter={x:Static c:BookmarkConverters.ToBrush}}"
|
|
|
|
StrokeThickness="{Binding Node.Bookmark, Converter={x:Static c:BookmarkConverters.ToStrokeThickness}}"
|
|
|
|
Stroke="{DynamicResource Brush.FG1}"
|
|
|
|
HorizontalAlignment="Left" VerticalAlignment="Center"
|
|
|
|
Data="{StaticResource Icons.Bookmark}"
|
|
|
|
IsVisible="{Binding Node.IsRepository}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
<Path Width="12" Height="12" Margin="0,0,8,0"
|
2024-04-02 01:23:47 -07:00
|
|
|
Fill="{DynamicResource Brush.FG1}"
|
|
|
|
HorizontalAlignment="Left" VerticalAlignment="Center"
|
|
|
|
Data="{StaticResource Icons.Folder}"
|
|
|
|
IsVisible="{Binding !Node.IsRepository}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
|
|
|
|
<TextBlock VerticalAlignment="Center" Text="{Binding Node.Name}"/>
|
|
|
|
<TextBlock Margin="8,0" HorizontalAlignment="Right" VerticalAlignment="Center" Foreground="{DynamicResource Brush.FG2}" Text="{Binding Node.Id}" IsVisible="{Binding Node.IsRepository}"/>
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|