SplashWindow.xaml.cs 557 B

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