1234567891011121314151617181920212223242526272829 |
- using System.Runtime.InteropServices;
- using Avalonia.Media;
- using PicView.Avalonia.CustomControls;
- namespace PicView.Avalonia.Views.UC.Menus;
- public partial class FileMenu : AnimatedMenu
- {
- public FileMenu()
- {
- InitializeComponent();
- Loaded += (_, _) =>
- {
- if (Settings.Theme.GlassTheme)
- {
- }
- else if (!Settings.Theme.Dark)
- {
- TopBorder.Background = Brushes.White;
- }
- if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
- {
- OpenWithButton.IsEnabled = false;
- PrintButton.IsEnabled = false;
- }
- };
- }
- }
|