BililiveRecorder/BililiveRecorder.WPF/Controls/TaskbarIconControl.xaml.cs

54 lines
1.8 KiB
C#
Raw Normal View History

2021-01-03 13:21:36 +08:00
using System;
2020-11-28 13:02:57 +08:00
using System.Windows;
using System.Windows.Controls;
namespace BililiveRecorder.WPF.Controls
{
/// <summary>
/// Interaction logic for TaskbarIconControl.xaml
/// </summary>
public partial class TaskbarIconControl : UserControl
{
public TaskbarIconControl()
{
2021-01-03 13:21:36 +08:00
this.InitializeComponent();
using var iconStream = Application.GetResourceStream(new Uri("pack://application:,,,/BililiveRecorder.WPF;component/ico.ico")).Stream;
this.TaskbarIcon.Icon = new System.Drawing.Icon(iconStream);
2020-11-28 13:02:57 +08:00
// AddHandler(NewMainWindow.ShowBalloonTipEvent, (RoutedEventHandler)UserControl_ShowBalloonTip);
if (Application.Current.MainWindow is NewMainWindow nmw)
{
nmw.ShowBalloonTipCallback = (title, msg, sym) =>
{
2021-01-03 13:21:36 +08:00
this.TaskbarIcon.ShowBalloonTip(title, msg, sym);
2020-11-28 13:02:57 +08:00
};
}
}
private void TaskbarIcon_TrayLeftMouseUp(object sender, RoutedEventArgs e)
{
// RaiseEvent(new RoutedEventArgs(NewMainWindow.SuperActivateEvent));
(Application.Current.MainWindow as NewMainWindow)?.SuperActivateAction();
}
2020-12-10 17:02:56 +08:00
private void MenuItem_OpenMainWindow_Click(object sender, RoutedEventArgs e)
{
(Application.Current.MainWindow as NewMainWindow)?.SuperActivateAction();
}
private void MenuItem_Quit_Click(object sender, RoutedEventArgs e)
{
(Application.Current.MainWindow as NewMainWindow)?.CloseWithoutConfirmAction();
}
2020-11-28 13:02:57 +08:00
/*
private void UserControl_ShowBalloonTip(object sender, RoutedEventArgs e)
{
var f = e as NewMainWindow.ShowBalloonTipRoutedEventArgs;
TaskbarIcon.ShowBalloonTip(f.Title, f.Message, f.Symbol);
}
*/
}
}