-
Notifications
You must be signed in to change notification settings - Fork 386
Expand file tree
/
Copy pathClearStashes.axaml
More file actions
24 lines (22 loc) · 1.01 KB
/
ClearStashes.axaml
File metadata and controls
24 lines (22 loc) · 1.01 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
<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="500" d:DesignHeight="450"
x:Class="SourceGit.Views.ClearStashes"
x:DataType="vm:ClearStashes">
<StackPanel Orientation="Vertical" Margin="8,0,0,0">
<StackPanel Orientation="Horizontal">
<Path Width="16" Height="16"
Data="{StaticResource Icons.RemoveAll}"/>
<TextBlock FontSize="18"
Margin="8,0,0,0"
Classes="bold"
Text="{DynamicResource Text.ClearStashes}"/>
</StackPanel>
<TextBlock Margin="0,16,0,8"
Text="{DynamicResource Text.ClearStashes.Message}"
HorizontalAlignment="Center"/>
</StackPanel>
</UserControl>