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

93 lines
4.9 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
// /***************************************************************************
// 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/>.
//
//
// Copyright © 2011-2025 Natalia Portillo
// ****************************************************************************/
-->
<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"
xmlns:dialogs="clr-namespace:Aaru.Gui.ViewModels.Dialogs"
xmlns:localization="clr-namespace:Aaru.Localization;assembly=Aaru.Localization"
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="{x:Static localization:UI.Title_Console}">
<Design.DataContext>
<dialogs:ConsoleViewModel />
</Design.DataContext>
<Border Padding="15">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" /> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<DataGrid ItemsSource="{Binding Entries}">
<DataGrid.Columns>
<DataGridTextColumn Header="{x:Static localization:UI.Title_Time}"
Binding="{Binding Timestamp}"
Width="Auto"
IsReadOnly="True" />
<DataGridTextColumn Header="{x:Static localization:UI.Title_Type}"
Binding="{Binding Type}"
Width="Auto"
IsReadOnly="True" />
<DataGridTextColumn Header="{x:Static localization:UI.Title_Module}"
Binding="{Binding Module}"
Width="Auto"
IsReadOnly="True" />
<DataGridTextColumn Header="{x:Static localization:UI.Title_Message}"
Binding="{Binding Message}"
Width="Auto"
IsReadOnly="True" />
</DataGrid.Columns>
</DataGrid>
<CheckBox Grid.Row="1"
IsChecked="{Binding DebugChecked}">
<TextBlock Text="{x:Static localization:UI.Enable_debug_console}" />
</CheckBox>
<StackPanel Grid.Row="2"
Spacing="10"
Orientation="Horizontal"
HorizontalAlignment="Right">
<Button Command="{Binding ClearCommand}">
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Clear}" />
</Button>
<Button Command="{Binding SaveCommand}">
<TextBlock Text="{x:Static localization:UI.ButtonLabel_Save}" />
</Button>
</StackPanel>
</Grid>
</Border>
</Window>