23 lines
566 B
C#
23 lines
566 B
C#
|
using System;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Diagnostics;
|
|||
|
using System.Windows;
|
|||
|
using System.Windows.Controls;
|
|||
|
|
|||
|
/*namespace unison
|
|||
|
{
|
|||
|
public partial class Systray : ResourceDictionary, INotifyPropertyChanged
|
|||
|
{
|
|||
|
public Systray()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public event PropertyChangedEventHandler PropertyChanged;
|
|||
|
|
|||
|
private void NotifyPropertyChanged(string propertyName = "")
|
|||
|
{
|
|||
|
if (PropertyChanged != null)
|
|||
|
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
|
|||
|
}
|
|||
|
}
|
|||
|
}*/
|