79 lines
2.0 KiB
XML
79 lines
2.0 KiB
XML
<Window 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"
|
|
mc:Ignorable="d" d:DesignWidth="500" d:DesignHeight="200"
|
|
x:Class="LibationAvalonia.Dialogs.ScanAccountsDialog"
|
|
MinWidth="500" MinHeight="160"
|
|
Width="500" Height="200"
|
|
Title="Which Accounts?"
|
|
WindowStartupLocation="CenterOwner">
|
|
|
|
<Grid ColumnDefinitions="*,Auto" RowDefinitions="Auto,*,Auto">
|
|
|
|
<Grid.Styles>
|
|
<Style Selector="Button:focus">
|
|
<Setter Property="BorderBrush" Value="{DynamicResource SystemAccentColor}" />
|
|
<Setter Property="BorderThickness" Value="2" />
|
|
</Style>
|
|
</Grid.Styles>
|
|
|
|
<TextBlock
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="2"
|
|
Margin="10"
|
|
Text="Check the accounts to scan and import.
To change default selections, go to: Settings > Accounts"/>
|
|
|
|
<ScrollViewer
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="2"
|
|
Margin="10,0"
|
|
VerticalAlignment="Stretch"
|
|
HorizontalScrollBarVisibility="Disabled"
|
|
VerticalScrollBarVisibility="Auto">
|
|
|
|
<ListBox ItemsSource="{Binding Accounts}">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
|
|
<StackPanel Height="20" Orientation="Horizontal">
|
|
|
|
<CheckBox
|
|
Margin="0,0,10,0"
|
|
IsChecked="{Binding IsChecked, Mode=TwoWay}" />
|
|
<TextBlock
|
|
FontSize="12"
|
|
VerticalAlignment="Center"
|
|
Text="{Binding Text}" />
|
|
|
|
</StackPanel>
|
|
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
|
|
</ListBox>
|
|
|
|
</ScrollViewer>
|
|
|
|
<Button
|
|
Grid.Row="2"
|
|
Grid.Column="0"
|
|
Padding="20,5"
|
|
Margin="10"
|
|
Content="Edit Accounts"
|
|
Command="{Binding EditAccountsAsync}"/>
|
|
|
|
<Button
|
|
Grid.Row="2"
|
|
Grid.Column="1"
|
|
Padding="30,5"
|
|
Margin="10"
|
|
HorizontalAlignment="Right"
|
|
Content="Import"
|
|
Name="ImportButton"
|
|
Command="{Binding SaveAndClose}"/>
|
|
</Grid>
|
|
</Window>
|