Initial commit

This commit is contained in:
2014-04-30 17:37:45 -04:00
commit d9173c4787
63 changed files with 14276 additions and 0 deletions

24
TestWindow/App.xaml.cs Normal file
View File

@@ -0,0 +1,24 @@
using System.Collections.Generic;
using System.Windows;
namespace TestWindow
{
public partial class App
{
private List<WindowSource> _windowSourceList;
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
_windowSourceList = new List<WindowSource> { new WindowSource(), new WindowSource(), new WindowSource() };
}
protected override void OnExit(ExitEventArgs e)
{
_windowSourceList.ForEach(ws => ws.Dispose());
base.OnExit(e);
}
}
}