1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/MainApp/UserControl/TrayIcon.xaml.cs

32 lines
1.1 KiB
C#
Raw Normal View History

2023-07-12 22:41:31 +00:00
using Microsoft.Extensions.DependencyInjection;
using MSFSPopoutPanelManager.MainApp.ViewModel;
using Prism.Commands;
using System;
using System.Windows;
using System.Windows.Controls;
namespace MSFSPopoutPanelManager.MainApp
{
public partial class TrayIcon : UserControl
{
// This command has to be here since it doesn't work in view model, window StateChanged never gets fire
public DelegateCommand RestoreWindowCommand => new DelegateCommand(() => { ((Window)((Border)((Grid)this.Parent).Parent).Parent).WindowState = WindowState.Normal; }, () => { return true; });
private TrayIconViewModel ViewModel { get; set; }
public TrayIcon()
{
ViewModel = App.AppHost.Services.GetRequiredService<TrayIconViewModel>();
InitializeComponent();
Loaded += (sender, e) => { DataContext = ViewModel; };
Tray.DoubleClickCommand = RestoreWindowCommand;
}
private void MenuItem_Click(object sender, RoutedEventArgs e)
{
Tray.ContextMenu.IsOpen = true;
}
}
}