/ILSpy.BamlDecompiler/Tests/Cases/Simple.xaml.cs

http://github.com/icsharpcode/ILSpy · C# · 26 lines · 19 code · 2 blank · 5 comment · 0 complexity · d1db3809e0e7227650953595ea6c47de MD5 · raw file

  1. // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
  2. // This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. namespace ILSpy.BamlDecompiler.Tests.Cases
  13. {
  14. /// <summary>
  15. /// Interaction logic for Simple.xaml
  16. /// </summary>
  17. public partial class Simple : Window
  18. {
  19. public Simple()
  20. {
  21. InitializeComponent();
  22. }
  23. }
  24. }