Files
Aaru/Aaru.Gui/App.xaml

58 lines
3.2 KiB
XML
Raw Permalink 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 : App.xaml
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : GUI.
//
// [ Description ]
//
// GUI globals.
//
// [ 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
// ****************************************************************************/
-->
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:localization="clr-namespace:Aaru.Localization;assembly=Aaru.Localization"
xmlns:helpers="clr-namespace:Aaru.Gui.Helpers"
x:Class="Aaru.Gui.App">
<Application.Resources>
<helpers:ThemeToSvgPathConverter x:Key="ThemeToSvgPathConverter" />
</Application.Resources>
<Application.Styles>
<FluentTheme /> <StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Fluent.xaml" />
<!-- TODO: Abandoned project need to find replacement
<StyleInclude Source="resm:OxyPlot.Avalonia.Themes.Default.xaml?assembly=OxyPlot.Avalonia" />
-->
</Application.Styles>
<NativeMenu.Menu>
<NativeMenu>
<NativeMenuItem Header="{x:Static localization:UI.Menu_About}"
Click="OnAboutClicked" />
<NativeMenuItem Header="{x:Static localization:UI.Menu_Preferences}"
Click="OnPreferencesClicked" />
<NativeMenuItem Header="{x:Static localization:UI.Menu_Quit}"
Click="OnQuitClicked" />
</NativeMenu>
</NativeMenu.Menu>
</Application>