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

http://github.com/icsharpcode/ILSpy · C# · 26 lines · 19 code · 2 blank · 5 comment · 0 complexity · 1b584850fca8e65b6d7a0b2b63703822 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 MyControl.xaml
  16. /// </summary>
  17. public partial class MyControl : UserControl
  18. {
  19. public MyControl()
  20. {
  21. InitializeComponent();
  22. }
  23. }
  24. }