About.xaml.cs 568 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Shapes;
  13. namespace Aitex.UI.Charting.View
  14. {
  15. /// <summary>
  16. /// Interaction logic for About.xaml
  17. /// </summary>
  18. public partial class About : Window
  19. {
  20. public About()
  21. {
  22. InitializeComponent();
  23. }
  24. }
  25. }