Files
Aaru/Aaru.Gui/Views/Dialogs/Console.xaml

92 lines
4.6 KiB
Plaintext
Raw Normal View History

2020-04-17 21:45:50 +01:00
<!--
// /***************************************************************************
// Aaru Data Preservation Suite
//
//
// Filename : Console.xaml
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : GUI dialogs.
//
// [ Description ]
//
// Console dialog.
//
// [ License ]
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General public License for more details.
//
// You should have received a copy of the GNU General public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//
2024-12-19 10:45:18 +00:00
// Copyright © 2011-2025 Natalia Portillo
2020-04-17 21:45:50 +01:00
// ****************************************************************************/
-->
2024-05-01 04:05:22 +01:00
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
2020-04-16 20:40:25 +01:00
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
2024-05-01 04:05:22 +01:00
xmlns:dialogs="clr-namespace:Aaru.Gui.ViewModels.Dialogs"
mc:Ignorable="d"
d:DesignWidth="800"
d:DesignHeight="450"
Width="600"
Height="450"
x:Class="Aaru.Gui.Views.Dialogs.Console"
Icon="/Assets/aaru-logo.png"
Title="{Binding Title}">
<Design.DataContext>
2020-04-16 21:29:40 +01:00
<dialogs:ConsoleViewModel />
</Design.DataContext>
<Border Padding="15">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" /> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" />
</Grid.RowDefinitions>
2023-09-25 22:58:48 +01:00
<DataGrid ItemsSource="{Binding Entries}">
<DataGrid.Columns>
2024-05-01 04:05:22 +01:00
<DataGridTextColumn Header="{Binding TimeLabel}"
Binding="{Binding Timestamp}"
Width="Auto"
IsReadOnly="True" />
2024-05-01 04:05:22 +01:00
<DataGridTextColumn Header="{Binding TypeLabel}"
Binding="{Binding Type}"
Width="Auto"
IsReadOnly="True" />
2024-05-01 04:05:22 +01:00
<DataGridTextColumn Header="{Binding ModuleLabel}"
Binding="{Binding Module}"
Width="Auto"
IsReadOnly="True" />
2024-05-01 04:05:22 +01:00
<DataGridTextColumn Header="{Binding MessageLabel}"
Binding="{Binding Message}"
Width="Auto"
IsReadOnly="True" />
</DataGrid.Columns>
</DataGrid>
2024-05-01 04:05:22 +01:00
<CheckBox Grid.Row="1"
IsChecked="{Binding DebugChecked}">
<TextBlock Text="{Binding DebugText}" />
</CheckBox>
2024-05-01 04:05:22 +01:00
<StackPanel Grid.Row="2"
Spacing="10"
Orientation="Horizontal"
HorizontalAlignment="Right">
<Button Command="{Binding ClearCommand}">
<TextBlock Text="{Binding ClearLabel}" />
</Button>
<Button Command="{Binding SaveCommand}">
<TextBlock Text="{Binding SaveLabel}" />
</Button>
</StackPanel>
</Grid>
</Border>
</Window>