Add implementation

This commit is contained in:
2014-05-02 17:24:53 -04:00
commit d5ee470018
14 changed files with 1001 additions and 0 deletions

23
App.xaml.cs Normal file
View File

@@ -0,0 +1,23 @@
using System.Windows;
namespace SystemTemperatureStatusWindow
{
public partial class App
{
private WindowSource _windowSource;
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
_windowSource = new WindowSource();
}
protected override void OnExit(ExitEventArgs e)
{
_windowSource.Dispose();
base.OnExit(e);
}
}
}