Files
Aaru/Aaru.Gui/App.xaml

52 lines
2.9 KiB
Plaintext
Raw Normal View History

2020-04-17 21:45:50 +01:00
<!--
// /***************************************************************************
// 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 © 20112020 Natalia Portillo
// ****************************************************************************/
-->
<Application xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2020-04-10 01:10:55 +01:00
xmlns:gui="clr-namespace:Aaru.Gui" x:Class="Aaru.Gui.App">
2020-04-09 02:26:04 +01:00
<Application.DataTemplates>
2020-04-10 01:10:55 +01:00
<gui:ViewLocator />
2020-04-09 02:26:04 +01:00
</Application.DataTemplates>
<Application.Styles>
2020-04-10 01:10:55 +01:00
<StyleInclude Source="avares://Avalonia.Themes.Default/DefaultTheme.xaml" />
<StyleInclude Source="avares://Avalonia.Themes.Default/Accents/BaseLight.xaml" />
<StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Default.xaml" />
2020-04-17 21:45:50 +01:00
<StyleInclude Source="resm:OxyPlot.Avalonia.Themes.Default.xaml?assembly=OxyPlot.Avalonia" />
2020-04-09 02:26:04 +01:00
</Application.Styles>
2020-04-09 18:18:56 +01:00
<NativeMenu.Menu>
<NativeMenu>
<NativeMenuItem Header="_About" Clicked="OnAboutClicked" />
<NativeMenuItem Header="_Preferences" Clicked="OnPreferencesClicked" />
2020-04-10 19:11:19 +01:00
<NativeMenuItem Header="_Quit" Clicked="OnQuitClicked" />
2020-04-09 18:18:56 +01:00
</NativeMenu>
</NativeMenu.Menu>
2020-04-10 01:10:55 +01:00
</Application>