2
0

Welcome.xaml.cs 843 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Navigation;
  15. using System.Windows.Shapes;
  16. namespace WechatBakTool.Pages
  17. {
  18. /// <summary>
  19. /// Welcome.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class Welcome : Page
  22. {
  23. public Welcome()
  24. {
  25. InitializeComponent();
  26. }
  27. private void StarGithub_MouseDown(object sender, MouseButtonEventArgs e)
  28. {
  29. Process.Start("explorer.exe", "https://github.com/SuxueCode/WechatBakTool");
  30. }
  31. }
  32. }