starts up to a toolbar icon with context menu. still much more to do

This commit is contained in:
Grant Limberg 2016-11-08 14:54:55 -08:00
parent 54206fd44d
commit 6b0543ba27
10 changed files with 249 additions and 119 deletions

View file

@ -5,6 +5,7 @@ using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using Hardcodet.Wpf.TaskbarNotification;
namespace WinUI
{
@ -13,5 +14,12 @@ namespace WinUI
/// </summary>
public partial class App : Application
{
private TaskbarIcon tb;
private void InitApplication()
{
tb = (TaskbarIcon)FindResource("NotifyIcon");
tb.Visibility = Visibility.Visible;
}
}
}